键事件处理程序不会在表单级别触发

发布于 2024-09-29 11:50:02 字数 301 浏览 3 评论 0原文

{Form constructor}
this->KeyDown += gcnew KeyEventHandler(this, &Form::Form_KeyDown);
...

void Form1::Form_KeyDown(Object^ Sender, KeyEventArgs^ E)
{
   MessageBox::Show("Key = " + E->KeyCode.ToString(), "Test");
}

上面的事件处理程序永远不会触发。但窗体的子控件的处理程序会这样做。会出现什么问题呢?

{Form constructor}
this->KeyDown += gcnew KeyEventHandler(this, &Form::Form_KeyDown);
...

void Form1::Form_KeyDown(Object^ Sender, KeyEventArgs^ E)
{
   MessageBox::Show("Key = " + E->KeyCode.ToString(), "Test");
}

The above event handler never fires. But the form's child controls' handler does. What would be the problem ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

余罪 2024-10-06 11:50:02

除了事件处理程序之外,您还需要设置表单的 KeyPreview 属性设置为 true。根据 MSDN:

当此属性设置为 true 时,表单将接收所有 KeyPress、KeyDown 和 KeyUp 事件。窗体的事件处理程序完成对击键的处理后,将击键分配给具有焦点的控件。

In addition to having your event handler, you need to set the form's KeyPreview property to true. According to MSDN:

When this property is set to true, the form will receive all KeyPress, KeyDown, and KeyUp events. After the form's event handlers have completed processing the keystroke, the keystroke is then assigned to the control with focus.

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