ToolStrip.ShowItemToolTips 属性

定义

获取或设置一个值,该值指示是否在 ToolStrip 项上显示工具提示。

public:
 property bool ShowItemToolTips { bool get(); void set(bool value); };
public bool ShowItemToolTips { get; set; }
member this.ShowItemToolTips : bool with get, set
Public Property ShowItemToolTips As Boolean

属性值

如果要显示工具提示,则为 true;否则为 false。 默认值为 true

示例

下面的代码示例关闭 的ToolStripButton自动ToolTip文本并设置自定义ToolTip文本。 此示例是 属性中提供的更大示例的 AutoToolTip 一部分。

this.toolStripButton1.AutoToolTip = false;
this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Text = "Button1";
this.toolStripButton1.ToolTipText = "ToolTip for Button1.";
Me.toolStripButton1.AutoToolTip = False
Me.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
Me.toolStripButton1.Name = "toolStripButton1"
Me.toolStripButton1.Text = "Button1"
Me.toolStripButton1.ToolTipText = "ToolTip for Button1."

注解

ShowItemToolTips使用 属性确定是否为 ToolStripItem显示工具提示。

适用于

另请参阅