KeyEventArgs.IsToggled 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 une valeur qui indique si la touche référencée par l'événement est basculée.
public:
property bool IsToggled { bool get(); };
public bool IsToggled { get; }
member this.IsToggled : bool
Public ReadOnly Property IsToggled As Boolean
Valeur de propriété
true
si la touche est basculée ; sinon, false
. Il n’y a pas de valeur par défaut.
Exemples
L’exemple suivant vérifie si la clé associée à un instance de KeyEventArgs est activée en obtenant l’état de la IsToggled propriété .
// e is a instance of KeyEventArgs.
// btnIsToggled is a Button.
if (e.IsToggled)
{
btnIsToggle.Background = Brushes.Red;
}
' e is a instance of KeyEventArgs.
' btnIsToggled is a Button.
If e.IsToggled Then
btnIsToggle.Background = Brushes.Red
Remarques
La Keyboard classe fournit également des informations sur l’état des touches du clavier. Pour instance, la IsKeyToggled méthode retourne si une clé spécifiée est activée.