Compartir a través de


InputKeyboardSource.SystemKeyDown Evento

Definición

Se produce cuando el usuario presiona una tecla cuando también se presiona la tecla 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 de evento

Comentarios

Las aplicaciones no reciben este evento cuando se habilita un Editor de métodos de entrada (IME). El Editor de métodos de entrada (IME) controla todas las entradas de teclado y establece Handled en true.

Se aplica a

Consulte también