views:

371

answers:

1

Is there any way to control a tooltip's location on a Winform? I can handle the Popup event, but in the event handler I can only change the size, not the location. I could use the OnMouseEnter/Leave events of the control to manually show a tooltip, but then I lose the benefits of the AutomaticDelay property of a normal tooltip.

+2  A: 

The ToolTip.Show method has some overloads that allow this. Check it out.

Jay Riggs