Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a custom control inheriting from the UserControl class. It has got a ToolTip property but I need to show it when the mouse is dragged over it.

The Tooltip.Show method expects the second argument of type Control. I'm not sure how to with it.

Any ideas/help appreciated.

share|improve this question

1 Answer

Instantiate your tooltip in constructor and show it on mouse hover event.

Taken from Joseph's answer in stackoverflow

public ToolTip tT { get; set; }

public ClassConstructor()
{
tT = new ToolTip();
}

private void MyControl_MouseHover(object sender, EventArgs e)
{
tT.Show("Why So Many Times?", this);
}

Hope it helps.

share|improve this answer
Already tried this. It gives me a NullReferenceException at System.Windows.Forms.ToolTip.IsWindowActive(IWin32Window window) – Manish Dec 3 '12 at 8:36
For this to work, you have to hover over the 'empty' canvas of user control, not the child controls that are part of user control. May be that's why you are getting IsWindowActive exception. – hridya pv Dec 4 '12 at 4:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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