Keyboard.IsKeyToggled(Key) 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.
Détermine si la touche spécifiée est basculée.
public:
static bool IsKeyToggled(System::Windows::Input::Key key);
public static bool IsKeyToggled (System.Windows.Input.Key key);
static member IsKeyToggled : System.Windows.Input.Key -> bool
Public Shared Function IsKeyToggled (key As Key) As Boolean
Paramètres
- key
- Key
Clé spécifiée.
Retours
true
si key
est basculé ; sinon, false
.
Exemples
L’exemple suivant montre comment utiliser la IsKeyToggled méthode pour déterminer l’état d’une clé spécifique. La Return clé est passée à la IsKeyToggled méthode . Si la méthode retourne true
, l’arrière-plan d’un Button est modifié.
// Uses the Keyboard.IsToggled to determine if a key is toggled.
if (Keyboard.IsKeyToggled(Key.Return))
{
btnIsToggle.Background = Brushes.Red;
}
else
{
btnIsToggle.Background = Brushes.AliceBlue;
}
' Uses the Keyboard.IsToggled to determine if a key is toggled.
If Keyboard.IsKeyToggled(Key.Return) Then
btnIsToggle.Background = Brushes.Red
Else
btnIsToggle.Background = Brushes.AliceBlue
End If
Remarques
La GetKeyStates méthode peut être utilisée pour déterminer l’ensemble d’états d’une clé spécifique.