Reputation: 49289
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.
Upvotes: 5
Views: 3299
Reputation: 53603
The ToolTip.Show method has some overloads that allow this. Check it out.
Upvotes: 6