Keyboard.IsKeyUp(Key) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Determina se viene rilasciato il tasto specificato.
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
Parametri
- key
- Key
Tasto da controllare.
Restituisce
true
se l'oggetto key
è nello stato attivato; in caso contrario, false
.
Esempio
Nell'esempio seguente viene illustrato come usare il IsKeyUp metodo per determinare lo stato di una chiave specifica. La Return chiave viene passata al IsKeyUp metodo . Se il metodo restituisce true
, lo sfondo di un Button oggetto viene modificato.
// 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
Commenti
Il GetKeyStates metodo può essere usato per determinare il set di stati di una chiave specifica.