ListBox.UnselectAll 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.
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