.net - Showing a tooltip for a MenuItem -
i've got menu contains, among other things, most-recently-used file paths. paths these files can long, text gets clipped "c:\progra...\foo.txt"
i'd pop tooltip full path when user hovers on item, doesn't seem possible tooltip class in .net 2.0.
am missing obvious?
if creating menu items using system.windows.forms.menuitem class won't have "tooltiptext" property.
you should use system.windows.forms.toolstripmenuitem class new of .net framework 2.0 , include "tooltiptext" property.
you have remember specify showitemtooltips = true on menustrip control
Comments
Post a Comment