I have a couple of labels in status bar, on which I have set tooltip.
statusLblWeek.Text = weeklyHrs.ToString();
statusLblWeek.ToolTipText = " Consumption of this week " + statusLblWeek.Text;
Status labels are displayed correctly but the tooltip is not showing up. Why?
Use property StatusStrip.ShowItemToolTips
True if ToolTips are shown for the StatusStrip; otherwise, false. The default is false.
statusStrip1.ShowItemToolTips = true;
statusLblWeek.Text = weeklyHrs.ToString();
statusLblWeek.ToolTipText = " Consumption of this week " + statusLblWeek.Text;
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With