KeyEvent 未检测到任何键 C#
我目前很困惑。我似乎无法让 KeyEvent 工作。像这样的简单代码不会响应我按下的键。我尝试过 KeyDown 和 KeyPress。编译时没有错误...是什么原因造成的?它只会让我输入 E 键,而不提示消息框。
private void textBox1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
if (e.KeyCode == Keys.E)
{
MessageBox.Show("E");
}
}
I'm currently stumped. I can't seem to get the KeyEvent to work. Simple code like this just won't respond to the key I'm pressing. I've tried KeyDown and KeyPress. No errors while compiling... what is causing this?? It will just let me enter the E key without prompting the MEssage box.
private void textBox1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
if (e.KeyCode == Keys.E)
{
MessageBox.Show("E");
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您应该使用 PreviewKeyDown 事件,例如,而不是标准按键事件,因为有时这些事件被阻止并且不会通过控件冒泡。
I think you should be using the PreviewKeyDown Event, for example, instead of the standard key events, as sometimes these events are blocked an not bubbled up through the control.
您应该将 textbox1 所在位置的 Form KeyPreview 属性更改为 true。
You should change the Form KeyPreview property to true where textbox1 is located.