Search Results

1
vote
1answer
172 views

How do I remove a tooltip currently bound to a control?

I'm currently adding a tooltip to a label like so: ToolTip LabelToolTip = new System.Windows.Forms.ToolTip(); LabelToolTip.SetToolTip(this.LocationLabel, text); Wh …