ListView.ShowItemToolTips Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit une valeur indiquant si les info-bulles sont affichées pour les objets ListViewItem contenus dans ListView.
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
Valeur de propriété
true
si les info-bulles ListViewItem doivent être affichées ; sinon, false
. La valeur par défaut est true
.
Exemples
L’exemple de code suivant montre comment utiliser les ShowItemToolTips propriétés et ListViewItem.ToolTipText . Pour exécuter cet exemple, collez le code dans un Windows Form et appelez InitializeItemsWithToolTips
à partir du constructeur ou Load du gestionnaire d’événements du formulaire.
// 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
Remarques
Si la propriété a la ShowItemToolTipstrue
valeur , toute ListViewItem propriété ayant une info-bulle l’affiche ; sinon, rien n’est affiché.