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 上に配置されたときに表示されるテキスト。
例
次のコード例では、 プロパティと ToolTipText プロパティの使用方法をListView.ShowItemToolTips示します。 この例を実行するには、コードを Windows フォームに貼り付け、フォームのコンストラクターまたは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
注釈
と を含む ListView の両方ListViewItemにツールヒントが設定されている場合は、 のListViewItemツールヒントのみが表示されます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET