Keyboard.IsKeyUp(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 relâchée.
public:
static bool IsKeyUp(System::Windows::Input::Key key);
public static bool IsKeyUp (System.Windows.Input.Key key);
static member IsKeyUp : System.Windows.Input.Key -> bool
Public Shared Function IsKeyUp (key As Key) As Boolean
Paramètres
- key
- Key
Clé à vérifier.
Retours
true
si key
est relâché ; sinon, false
.
Exemples
L’exemple suivant montre comment utiliser la IsKeyUp méthode pour déterminer l’état d’une clé spécifique. La Return clé est passée à la IsKeyUp méthode . Si la méthode retourne true
, l’arrière-plan d’un Button est modifié.
// Uses the Keyboard.IsKeyUp to determine if a key is up.
if (Keyboard.IsKeyUp(Key.Return))
{
btnIsUp.Background = Brushes.Red;
}
else
{
btnIsUp.Background = Brushes.AliceBlue;
}
' Uses the Keyboard.IsKeyUp to determine if a key is up.
If Keyboard.IsKeyUp(Key.Return) Then
btnIsUp.Background = Brushes.Red
Else
btnIsUp.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.