禁用 CMFCToolBar 中的项目
我正在尝试升级我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
工具栏不是 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.