InputKeyboardSource.KeyUp Evento
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.
Si verifica quando l'utente rilascia un tasto premuto quando il tasto ALT non è stato premuto.
// Register
event_token KeyUp(TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;
// Revoke with event_token
void KeyUp(event_token const* cookie) const;
// Revoke with event_revoker
InputKeyboardSource::KeyUp_revoker KeyUp(auto_revoke_t, TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;
public event TypedEventHandler<InputKeyboardSource,KeyEventArgs> KeyUp;
function onKeyUp(eventArgs) { /* Your code */ }
inputKeyboardSource.addEventListener("keyup", onKeyUp);
inputKeyboardSource.removeEventListener("keyup", onKeyUp);
- or -
inputKeyboardSource.onkeyup = onKeyUp;
Public Custom Event KeyUp As TypedEventHandler(Of InputKeyboardSource, KeyEventArgs)
Tipo evento
Commenti
Le app non ricevono questo evento quando un editor di metodi di input (IME) è abilitato. L'editor di metodi di input (IME) gestisce tutti gli input della tastiera e imposta Handled su true.