KeyEvent 未检测到任何键 C#

发布于 2024-12-03 22:12:13 字数 322 浏览 0 评论 0原文

我目前很困惑。我似乎无法让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

Spring初心 2024-12-10 22:12:13

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.

撩起发的微风 2024-12-10 22:12:13

您应该将 textbox1 所在位置的 Form KeyPreview 属性更改为 true。

You should change the Form KeyPreview property to true where textbox1 is located.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文