I\'m currently adding a tooltip to a label like so:
ToolTip LabelToolTip = new System.Windows.Forms.ToolTip();
LabelToolTip.SetToolTip(this.LocationLabel, te
The tooltip object works in multiple Controls at the same time.
Create a single instance of the ToolTip and use it for adding and removing a ToolTip of any Control.
When adding you should simply use .SetToolTip(Control, "Message that will apear when hover") When removing you just set it back to null with .SetToolTip(Control, null).