ListBox.UnselectAll Méthode

Définition

Efface toute la sélection dans une ListBox.

public:
 void UnselectAll();
public void UnselectAll ();
member this.UnselectAll : unit -> unit
Public Sub UnselectAll ()

Exemples

L’exemple suivant montre comment utiliser la UnselectAll méthode pour désélectionner tous les éléments d’une zone de liste.

private void UnselectAll(object sender, RoutedEventArgs e)
{
    lb.UnselectAll();
}
Private Sub UnselectAll(ByVal sender As Object, ByVal e As RoutedEventArgs)
    lb.UnselectAll()
End Sub

S’applique à