vote up 2 vote down star

How can I display a tooltip over a button using Winforms?

flag

6% accept rate

6 Answers

vote up 0 vote down

thanks a lot,its very usefuLL!!

link|flag
vote up 1 vote down

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");

link|flag
vote up 5 vote down

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.

  1. Add a ToolTip control (under Common Controls in the Windows Forms toolbox) to your form.
  2. Give it a name - say MyToolTip
  3. Set the "Tooltip on MyToolTip" property of MyButton (under Misc in the button property grid) to the text that should appear when you hover over it.

The tooltip will automatically appear when the cursor hovers over the button, but if you need to display it programatically, call

MyToolTip.Show("Tooltip text goes here", MyButton)

in your code to show the tooltip, and MyToolTip.Hide(MyButton) to make it disappear again.

link|flag
vote up 0 vote down

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:

    private void checkBox1_MouseHover(object sender, EventArgs e)
    {
        toolTip1.Show("text", checkBox1);
    }
link|flag
vote up 1 vote down

You can use the ToolTip class:

Creating a ToolTip for a Control

Example:

private void Form1_Load(object sender, System.EventArgs e)
{
    System.Windows.Forms.ToolTip ToolTip1 = new System.Windows.Forms.ToolTip();
    ToolTip1.SetToolTip(this.Button1, "Hello");
}
link|flag
vote up -4 vote down

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:

ToolTip t = new ToolTip();

then the event handler:

private void control_MouseHover(object sender, EventArgs e)
{
  t.Show("Text", (Control)sender);
}
link|flag
Wow... really? Really don't you just need the steps? The only reason I added psuedocode was to make perfectly clear what i'd said and it got voted down twice?... Again... wow - harsh croud. – Fry Oct 3 '08 at 19:57
I think you got voted down because that's not the way to use ToolTip controls in Windows Forms. You only need one such control on the form and it shows the tips for all the controls. See code in the other responses. – julianz Jun 9 at 5:32
I guess the explanation doesn't match the code, Where in the explanation I said do display it and in the code I initialized it as well. My bad. :P – Fry Sep 16 at 0:19
@ julianz Actually, this works well for having specialized tooltips which can be dynamic if you want depending on state (minus of course the creation - forgive me, I was just trying to fit it all into one block.) As for other responses on a similar vein... yshuditelu and Dylan Beattie were similar albeit without the instantiation. – Fry Sep 16 at 0:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.