在 MFC 中,鼠标悬停时会选择上下文菜单项

发布于 2024-12-29 20:31:06 字数 83 浏览 1 评论 0原文

我有一个带有上下文菜单的应用程序。我使用 OnMenuSelect 方法,但当鼠标悬停在菜单项上时(而不是单击它时)会调用它。有没有办法解决这个问题呢?

I have an application with a context menu. I use the OnMenuSelect method but it gets invoked when mouse is over the menu item, not when I click on it. Is there a method to solve this problem?

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

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

发布评论

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

评论(1

蓝海 2025-01-05 20:31:06

是的,这是设计使然。 OnMenuSelect 方法 对应于 WM_MENUSELECT消息,每当鼠标悬停在菜单项上时就会发送该消息。

要处理菜单项的单击事件,您需要处理 WM_COMMAND消息,即

当用户从菜单中选择命令项时发送,当控件向其父窗口发送通知消息时,或者当转换加速键击键时发送。

在 MFC 术语中,这意味着重写 OnCommand 方法:

当用户从菜单中选择一项、子控件发送通知消息或转换加速键击键时,框架会调用此成员函数。

Yes, this is by design. The OnMenuSelect method corresponds to the WM_MENUSELECT message, which is sent whenever the mouse is hovering over a menu item.

To handle a click event for a menu item, you need to process the WM_COMMAND message, which is

Sent when the user selects a command item from a menu, when a control sends a notification message to its parent window, or when an accelerator keystroke is translated.

In MFC terms, this means overriding the OnCommand method:

The framework calls this member function when the user selects an item from a menu, when a child control sends a notification message, or when an accelerator keystroke is translated.

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