KeyEventArgs.IsUp Proprietà
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.
Ottiene un valore che indica se il tasto, cui fa riferimento l'evento, è nello stato rilasciato.
public:
property bool IsUp { bool get(); };
public bool IsUp { get; }
member this.IsUp : bool
Public ReadOnly Property IsUp As Boolean
Valore della proprietà
true
se il tasto è rilasciato; in caso contrario, false
. Non è disponibile alcun valore predefinito.
Esempio
Nell'esempio seguente viene verificato se la chiave associata a un'istanza di KeyEventArgs è up ottenendo lo stato della IsUp proprietà .
// e is an instance of KeyEventArgs.
// btnIsUp is a Button.
if (e.IsUp)
{
btnIsUp.Background = Brushes.Red;
}
' e is an instance of KeyEventArgs.
' btnIsUp is a Button.
If e.IsUp Then
btnIsUp.Background = Brushes.Red
Commenti
La Keyboard classe fornisce anche informazioni sullo stato dei tasti sulla tastiera. Ad esempio, il IsKeyUp metodo restituisce se un oggetto specificato è attivo.