InputKeyboardSource.SystemKeyDown 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 preme un tasto quando viene premuto anche IL tasto ALT.
// Register
event_token SystemKeyDown(TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;
// Revoke with event_token
void SystemKeyDown(event_token const* cookie) const;
// Revoke with event_revoker
InputKeyboardSource::SystemKeyDown_revoker SystemKeyDown(auto_revoke_t, TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;
public event TypedEventHandler<InputKeyboardSource,KeyEventArgs> SystemKeyDown;
function onSystemKeyDown(eventArgs) { /* Your code */ }
inputKeyboardSource.addEventListener("systemkeydown", onSystemKeyDown);
inputKeyboardSource.removeEventListener("systemkeydown", onSystemKeyDown);
- or -
inputKeyboardSource.onsystemkeydown = onSystemKeyDown;
Public Custom Event SystemKeyDown As TypedEventHandler(Of InputKeyboardSource, KeyEventArgs)
Tipo evento
Commenti
Le app non ricevono questo evento quando è abilitato un Input Method Editor (IME). L'IME (Input Method Editor) gestisce tutti gli input della tastiera e imposta gestito su true.