禁用 CMFCToolBar 中的项目

发布于 2025-01-07 05:31:23 字数 304 浏览 2 评论 0原文

我正在尝试升级我的 MFC MDI 应用程序以使用新的 MFC 功能包。

我将 CToolbar 转换为 CMFCToolBar。现在我试图在某些条件下禁用工具栏中的一项。我监听了项目 ID 的 ON_UPDATE_COMMAND_UI 消息,并通过编写以下内容禁用了该项目:

pCmdUI->Enable(FALSE);

仅当 ON_UPDATE_COMMAND_UI 消息在 CView 对象中处理时,此方法才能完美运行,但如果在 CMFCToolbar 派生类中处理,则不能。

是否有办法从工具栏类本身禁用某个项目?

I am trying to upgrade my MFC MDI application to use the new MFC Feature Pack.

I converted the CToolbar to CMFCToolBar. Now I am trying to disable one item in the toolbar under certain conditions. I listened to the ON_UPDATE_COMMAND_UI message of the item's ID and disabled the item by writing the following:

pCmdUI->Enable(FALSE);

This works perfectly only if the ON_UPDATE_COMMAND_UI message was handled in the CView object but not if handled in the CMFCToolbar derived class.

If there a way to disable an item from the toolbar class itself?

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

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

发布评论

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

评论(1

沒落の蓅哖 2025-01-14 05:31:23

工具栏不是 MFC 中命令路由的一部分。因此它永远不会获取命令和更新命令 UI 消息。您可以在此处查看命令路由的详细信息: MFC命令路由

您可以覆盖获取命令消息的对象之一中的 OnCmdMsg() 方法(如您在上面的链接中看到的)并将消息传递到工具栏。

The Toolbar is not part of the command routing in MFC. So it will never get the command and update command UI messages. You can see the command routing in detail here: MFC Command Routing

You could overwrite the OnCmdMsg() method in one of the objects which gets the command messages (as you can see in the link above) and pass the message on to the Toolbar.

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