Jon Tackabury
Jon Tackabury

Reputation: 49289

Control a Winforms tooltip's location

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

Answers (1)

Jay Riggs
Jay Riggs

Reputation: 53603

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

Upvotes: 6

Related Questions