VS 2008 MFC - 删除 MFC 处理程序
如何从 C++ 文件中删除 MFC 命令处理程序(例如 ON_UPDATE_COMMAND_UI)? 我似乎无法通过 Dev Studio 找到一种方法。如果你知道怎么做,请解释一下。
我正在使用 VS 2008。
谢谢, 麦克风
How do you remove a MFC command handler like ON_UPDATE_COMMAND_UI from a C++ file?
I can't seem to find a way to do it thru Dev Studio. If you know how, please explain.
I am using VS 2008.
Thanks,
Mike
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要创建处理程序,您使用了属性窗格的消息列表中的下拉列表。当您没有处理程序时,列表中会有一个类似
的条目。 OnXxxUpdate
。如果您已经有一个处理程序,下拉同一列表将显示OnXxxUpdate
——点击它。这只是删除了消息映射中的条目——您必须手动删除函数体。To create a handler, you used the drop-down list in the Messages list of the properties pane. When you didn't have a handler, the list had an entry something like
<add> OnXxxUpdate
. If you already have a handler, dropping down the same list will show a<delete> OnXxxUpdate
-- click that. That just removes the entry in the message map -- you have to delete the function body manually.