ListBox.SelectAll Méthode

Définition

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

S’applique à