如何在visual studio 2013表单应用程序的文本框中检测何时输入?我尝试过使用textbox1_OnKeyPress,KeyUp,KeyDown,KeyPress,我在谷歌搜索中找到的所有内容,但没有一个工作......这是我在textChanged中要做的检查吗?
答案 0 :(得分:1)
在表单中添加一个文本框并处理该文本框的KeyDown事件。
public class Form1
{
public Form1()
{
InitializeComponent();
textBox1.KeyDown += new KeyEventHandler(this.KeyDownEvent);
}
private void KeyDownEvent(object sender, KeyEventArgs e)
{
if (e.KeyCOde == Keys.Return)
{
//Place your code here
}
}
}