我正在尝试在文本框(WinForm)中添加“KeyPress”事件
this.textBox1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(CheckKeys);
这里是'CheckKeys':
private void CheckKeys(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
if (e.KeyChar == (char)13)
{
// Enter is pressed - do something
}
}
这里的想法是,一旦文本框处于焦点并按下“Enter”按钮,就会发生一些事情......
但是,我的机器找不到'KeyPress'事件。 我的代码有问题吗?
更新:
我也试过把KeyDown而不是KeyPress:
private void textBox1_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
{
if (e.Key == Key.Return)
// Enter is pressed - do something
}
}
仍然没有工作......
答案 0 :(得分:10)
您正在混合类库,不要在WPF项目中使用Windows窗体类。看起来像这样:
public partial class Window1 : Window {
public Window1() {
InitializeComponent();
this.textBox1.KeyDown += new KeyEventHandler(textBox1_KeyDown);
}
private void textBox1_KeyDown(object sender, KeyEventArgs e) {
if (e.Key == Key.Enter) {
MessageBox.Show("Enter!");
e.Handled = true;
}
}
}
答案 1 :(得分:6)
你看过KeyPress
上的documentation了吗?它明确指出 KeyPress事件不是由非字符键引发的;但是,非字符键确实引发了KeyDown和KeyUp事件。使用其中一个事件应该可行。
答案 2 :(得分:-4)
尝试以下步骤,bcoz我已经测试过了。
然后输入以下代码。
private void textBox2_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)13)
{
//press Enter do Something Like i have messagebox below to show "wow"
MessageBox.Show("wow");
}
else
{
}
}