C#桌面应用程序。
在我的应用程序中,我想创建一个自动在文本框中键入start()的按钮,然后按Enter键。
如果我想在我的应用程序中启动进程,则需要在文本框中输入“ start()”,然后按“ Enter键”,按下该按钮时应执行此过程。这将是什么代码?
答案 0 :(得分:0)
这就是你要问的
private void txtConsoleIn_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode==Keys.Enter)
{
// Execute command - your code
MessageBox.Show("Start()"); // this line just for test
}
}
private void button2_Click(object sender, EventArgs e)
{
txtConsoleIn.Text = "start()";
txtConsoleIn.Focus();
SendKeys.Send("{ENTER}");
}