In my application I want to use a tooltip to point at a label to get the users attention:

toolTip.IsBalloon = true;
toolTip.Show("message", label1);

The problem is that the balloon isn't pointing at the specified label. What should I do?

link|improve this question

73% accept rate
1  
WinForms, WPF, WinRT? – p.campbell Oct 2 '11 at 15:20
And the most interesting question: what is ToolTip class? BCL, or third-party? – Artur Mustafin Oct 2 '11 at 15:25
feedback

3 Answers

up vote 2 down vote accepted

This is a known bug.

Try calling it twice for a hack work-around:

toolTip.Show(string.Empty, label1, 0);
toolTip.Show("message", label1);
link|improve this answer
It worked. Thanks :) – Muhammad Ali Dildar Oct 2 '11 at 15:56
feedback

You can do something like this.. more specific (i.e) how much time the tool tip will be displayed...

When MouseLeave

   public class MouseLeave
   {
       public void mouseLeave(Label label1, ToolTip ttpTemp)
       {
          ttpTemp.Hide(label1);
       }
  }

when mouse enter

  public class MouseOver
  {
    public void mouseOver(Label label1, ToolTip ttpTemp)
    {
                    ttpTemp.AutoPopDelay = 2000;
                    ttpTemp.InitialDelay = 1000;
                    ttpTemp.ReshowDelay = 500;
                    ttpTemp.IsBalloon = true;
                    ttpTemp.SetToolTip(label1, "Message1");
                    ttpTemp.Show("message1", label1,label1.width,label1.height/10,5000);
      }
   }
link|improve this answer
Mouse enter or leave doesn't fulfill my requirement. – Muhammad Ali Dildar Oct 2 '11 at 15:54
feedback

Tooltip works with MouseHover and MouseLeft [just imagine in this way] If the mouse come over the Label, the tooltip will be displayed, when the mouse left, tooltip will dissappear.

and the code should be:

    ToolTip t = new ToolTip();
    t.IsBalloon = true;
    t.ToolTipTitle = "Title";
    t.SetToolTip(label1, "Text");

just ToolTipTitle is optional :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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