2010-12-13 3 views

Répondre

17

Utilisez la propriété StatusStrip.ShowItemToolTips

Vrai si les info-bulles sont présentés pour la StatusStrip; sinon, faux. Le défaut est faux.

statusStrip1.ShowItemToolTips = true; 
statusLblWeek.Text = weeklyHrs.ToString(); 
statusLblWeek.ToolTipText = " Consumption of this week " + statusLblWeek.Text;