MFC:如何在C菜单项中添加工具提示?

发布于 2024-08-23 19:42:01 字数 50 浏览 5 评论 0原文

如何为 CMenu 项目添加工具提示?我找不到任何简单且有用的资源。请帮忙。谢谢...

How do you add tooltips for CMenu Items? I couldn't find any straightforward and helpful resource. Please help. Thanks...

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

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

发布评论

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

评论(3

为人所爱 2024-08-30 19:42:01

最简单的方法是将多个字符串传递给菜单文本,并用换行符分隔。

这将自动使 CMenu 显示文本的第二部分作为菜单工具提示。

例如,如果菜单项文本是“单击此处”,请将其更改为

"Click here\nThis is the tooltip for the menu item ..."

当然,如果您喜欢更高级/花哨的工具提示,请尝试

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

"Click here\nThis is the tooltip for the menu item ..."

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

日记撕了你也走了 2024-08-30 19:42:01

菜单项和弹出菜单项的工具提示 - 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

傲世九天 2024-08-30 19:42:01

我无法保证此示例是否有效,但处理 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

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