我在状态栏中有几个标签,我在上面设置了工具提示。
statusLblWeek.Text = weeklyHrs.ToString();
statusLblWeek.ToolTipText = " Consumption of this week " + statusLblWeek.Text;
状态标签显示正确,但工具提示未显示。为什么?
我在状态栏中有几个标签,我在上面设置了工具提示。
statusLblWeek.Text = weeklyHrs.ToString();
statusLblWeek.ToolTipText = " Consumption of this week " + statusLblWeek.Text;
状态标签显示正确,但工具提示未显示。为什么?
使用属性StatusStrip.ShowItemToolTips
如果为 StatusStrip 显示工具提示,则为真;否则为假。默认值为假。
statusStrip1.ShowItemToolTips = true;
statusLblWeek.Text = weeklyHrs.ToString();
statusLblWeek.ToolTipText = " Consumption of this week " + statusLblWeek.Text;