13

我在状态栏中有几个标签,我在上面设置了工具提示。

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

状态标签显示正确,但工具提示未显示。为什么?

4

1 回答 1

28

使用属性StatusStrip.ShowItemToolTips

如果为 StatusStrip 显示工具提示,则为真;否则为假。默认值为假。

statusStrip1.ShowItemToolTips = true;
statusLblWeek.Text = weeklyHrs.ToString();
statusLblWeek.ToolTipText = " Consumption of this week " + statusLblWeek.Text;
于 2010-12-13T09:38:43.370 回答