开发者

MFC : How to add tooltip in Cmenu items?

开发者 https://www.devze.com 2022-12-22 17:57 出处:网络
How do you add tooltips for CMenu Items? I couldn\'t find any straightforward a开发者_Go百科nd helpful resource. Please help. Thanks...The easiest way is to pass multiple strings to the Menu text sepa

How do you add tooltips for CMenu Items? I couldn't find any straightforward a开发者_Go百科nd helpful resource. Please help. Thanks...


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


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


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

0

精彩评论

暂无评论...
验证码 换一张
取 消