ListViewItem.ToolTipText 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定當滑鼠指標停留在 ListViewItem 上時所顯示的文字。
public:
property System::String ^ ToolTipText { System::String ^ get(); void set(System::String ^ value); };
public string ToolTipText { get; set; }
member this.ToolTipText : string with get, set
Public Property ToolTipText As String
屬性值
當滑鼠指標停留在 ListViewItem 上時所顯示的文字。
範例
下列程式碼範例示範如何使用 ListView.ShowItemToolTips 和 ToolTipText 屬性。 若要執行此範例,請將程式碼貼到 Windows Form 中,並從表單的建構函式或 Load 事件處理方法呼叫 InitializeItemsWithToolTips
。
// Declare the ListView.
private ListView ListViewWithToolTips;
private void InitializeItemsWithToolTips()
{
// Construct and set the View property of the ListView.
ListViewWithToolTips = new ListView();
ListViewWithToolTips.Width = 200;
ListViewWithToolTips.View = View.List;
// Show item tooltips.
ListViewWithToolTips.ShowItemToolTips = true;
// Create items with a tooltip.
ListViewItem item1WithToolTip = new ListViewItem("Item with a tooltip");
item1WithToolTip.ToolTipText = "This is the item tooltip.";
ListViewItem item2WithToolTip = new ListViewItem("Second item with a tooltip");
item2WithToolTip.ToolTipText = "A different tooltip for this item.";
// Create an item without a tooltip.
ListViewItem itemWithoutToolTip = new ListViewItem("Item without tooltip.");
// Add the items to the ListView.
ListViewWithToolTips.Items.AddRange(new ListViewItem[]{item1WithToolTip,
item2WithToolTip, itemWithoutToolTip} );
// Add the ListView to the form.
this.Controls.Add(ListViewWithToolTips);
this.Controls.Add(button1);
}
' Declare the ListView.
Private ListViewWithToolTips As ListView
Private Sub InitializeItemsWithToolTips()
' Construct and set the View property of the ListView.
ListViewWithToolTips = New ListView()
ListViewWithToolTips.Width = 200
ListViewWithToolTips.View = View.List
' Show item tooltips.
ListViewWithToolTips.ShowItemToolTips = True
' Create items with a tooltip.
Dim item1WithToolTip As New ListViewItem("Item with a tooltip")
item1WithToolTip.ToolTipText = "This is the item tooltip."
Dim item2WithToolTip As New ListViewItem("Second item with a tooltip")
item2WithToolTip.ToolTipText = "A different tooltip for this item."
' Create an item without a tooltip.
Dim itemWithoutToolTip As New ListViewItem("Item without tooltip.")
' Add the items to the ListView.
ListViewWithToolTips.Items.AddRange(New ListViewItem() _
{item1WithToolTip, item2WithToolTip, itemWithoutToolTip})
' Add the ListView to the form.
Me.Controls.Add(ListViewWithToolTips)
Me.Controls.Add(button1)
End Sub
備註
ListViewItem如果 和 其包含 ListView 都已設定工具提示,則只會顯示 的 ListViewItem ToolTip。