ListBox.SelectAll Méthode
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.
Sélectionne tous les éléments de ListBox.
public:
void SelectAll();
public void SelectAll ();
member this.SelectAll : unit -> unit
Public Sub SelectAll ()
Exceptions
La propriété SelectionMode est définie sur Single.
Exemples
L’exemple suivant montre comment utiliser la SelectAll méthode pour sélectionner et mettre en surbrillance tous les éléments d’une zone de liste.
private void SelectAll(object sender, RoutedEventArgs e)
{
lb.SelectAll();
}
Private Sub SelectAll(ByVal sender As Object, ByVal e As RoutedEventArgs)
lb.SelectAll()
End Sub