Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 237
Jon Tackabury Avatar asked Apr 23 '09 14:04

Jon Tackabury


1 Answers

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

like image 52
Jay Riggs Avatar answered Nov 07 '22 14:11

Jay Riggs