How can I display a tooltip over a button using Winforms?
|
|
thanks a lot,its very usefuLL!! |
||
|
|
|
|
Using the form designer: Drag the ToolTip control from the Toolbox, onto the form. Select the properties of the control you want the tool tip to appear on. Find the property 'ToolTip on toolTip1' (the name may not be toolTip1 if you changed it's default name). Set the text of the property to the tool tip text you would like to display. You can set also the tool tip programatically using the following call... this.toolTip1.SetToolTip(this.targetControl, "My Tool Tip"); |
||
|
|
|
|
The ToolTip is actually a WinForms control that handles displaying tool tips for multiple elements on a single form. Say your button is called MyButton.
The tooltip will automatically appear when the cursor hovers over the button, but if you need to display it programatically, call
in your code to show the tooltip, and MyToolTip.Hide(MyButton) to make it disappear again. |
||
|
|
|
|
The .NET framework provides a ToolTip class. Add one of those to your form and then on the MouseHover event for each item you would like a tooltip for, do something like the following:
|
||
|
|
|
|
You can use the ToolTip class: Creating a ToolTip for a Control Example:
|
||
|
|
|
|
Sure, just handle the mousehover event and tell it to display a tool tip. t is a tooltip defined either in the globals or in the constructor using:
then the event handler:
|
||||||||
|
