以下のコードを使用すると、ユーザーは実行可能ファイル(notepad.exeなど)に書き込み、開始ボタンをクリックしてプロセスを開始できます。
ただし、テキストボックスにEnter / Returnキーを受け入れさせるにはどうすればよいですか?入れましAcceptsReturn=true
たが何もしていません。Visual Studioでもプロパティを設定しましたが、Accept Return = True
まだ何もありません。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace process_list
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string text = textBox1.Text;
Process process = new Process();
process.StartInfo.FileName = text;
process.Start();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
textBox1.AcceptsReturn = true;
}
}
}