It seems that the Label has no Hint or ToolTip or Hovertext property. So what is the preferred method to show a hint, tooltip
Label
Hint
ToolTip
Hovertext
yourToolTip = new ToolTip(); //The below are optional, of course, yourToolTip.ToolTipIcon = ToolTipIcon.Info; yourToolTip.IsBalloon = true; yourToolTip.ShowAlways = true; yourToolTip.SetToolTip(lblYourLabel,"Oooh, you put your mouse over me.");