This is a migrated thread and some comments may be shown as answers.

tooltip for radApplicationMenu

3 Answers 71 Views
ApplicationMenu
This is a migrated thread and some comments may be shown as answers.
John Davis
Top achievements
Rank 2
John Davis asked on 08 Mar 2011, 01:05 PM
How do I set up in code a tooltip for the menu (the menu itself, not a menu item)?

More importantly, how can I find a property such as tooltip by myself without having to get technical support?


3 Answers, 1 is accepted

Sort by
0
Stefan
Telerik team
answered on 11 Mar 2011, 11:07 AM
Hi John Davis,

Thank you for writing.

You can subscribe to the ToolTipTextNeeded event of RadMenu, where you can provide the desired tool tip text. Please note that all RadControls for WinForms have this event, and this is the preferable way to assign tool tips to them.

I hope this helps.

Kind regards,
Stefan
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
0
John Davis
Top achievements
Rank 2
answered on 11 Mar 2011, 11:28 AM

 

 

Yes this technique works fine, thank you.

private
void radApplicationMenu1_ToolTipTextNeeded(object sender, ToolTipTextNeededEventArgs e)

 

 

{

 

e.ToolTipText =

 

"Right-click for menu";

 

 

}

0
Stefan
Telerik team
answered on 16 Mar 2011, 08:10 AM
Hello John Davis,

I am glad that I could help. Should you have any other questions, do not hesitate to open a new thread.
 
Greetings,
Stefan
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
Tags
ApplicationMenu
Asked by
John Davis
Top achievements
Rank 2
Answers by
Stefan
Telerik team
John Davis
Top achievements
Rank 2
Share this question
or