MFC:如何在C菜单项中添加工具提示?
如何为 CMenu 项目添加工具提示?我找不到任何简单且有用的资源。请帮忙。谢谢...
How do you add tooltips for CMenu Items? I couldn't find any straightforward and helpful resource. Please help. Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最简单的方法是将多个字符串传递给菜单文本,并用换行符分隔。
这将自动使 CMenu 显示文本的第二部分作为菜单工具提示。
例如,如果菜单项文本是“单击此处”,请将其更改为
当然,如果您喜欢更高级/花哨的工具提示,请尝试
http://www.tooltips.net/downloads.html
实现起来很简单,而且输出很酷
The easiest way is to pass multiple strings to the Menu text separated by newline characters.
This will automagically make CMenu display the second part of the text as the menu tooltip.
e.g., If a menu item text is "Click here", change it to
Of course, if you like more advanced/fancy tooltips, then try
http://www.tooltips.net/downloads.html
Its easy to implement, and the output is very cool
菜单项和弹出菜单项的工具提示 - CodeProject
http://www.codeproject.com/KB /menus/menuitemtooltip.aspx
菜单项和弹出菜单项的工具提示 - CodeGuru
http://www.codeguru.com/cpp/controls/controls/tooltipcontrols/article.php/c5233
Tooltips for Menu Item and popup menuitem - CodeProject
http://www.codeproject.com/KB/menus/menuitemtooltip.aspx
Tooltips for Menu Items and Popup Menu Items - CodeGuru
http://www.codeguru.com/cpp/controls/controls/tooltipcontrols/article.php/c5233
我无法保证此示例是否有效,但处理 WM_MENUSELECT 的策略是合理的:
http://msdn.microsoft.com/en-us/magazine/cc164067.aspx
I can't vouch for whether this sample works, but the strategy of handling WM_MENUSELECT is sound:
http://msdn.microsoft.com/en-us/magazine/cc164067.aspx