InputKeyboardSource.SystemKeyUp Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando el usuario suelta una tecla que se presionó cuando también se presionó la tecla ALT.
// Register
event_token SystemKeyUp(TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;
// Revoke with event_token
void SystemKeyUp(event_token const* cookie) const;
// Revoke with event_revoker
InputKeyboardSource::SystemKeyUp_revoker SystemKeyUp(auto_revoke_t, TypedEventHandler<InputKeyboardSource, KeyEventArgs const&> const& handler) const;
public event TypedEventHandler<InputKeyboardSource,KeyEventArgs> SystemKeyUp;
function onSystemKeyUp(eventArgs) { /* Your code */ }
inputKeyboardSource.addEventListener("systemkeyup", onSystemKeyUp);
inputKeyboardSource.removeEventListener("systemkeyup", onSystemKeyUp);
- or -
inputKeyboardSource.onsystemkeyup = onSystemKeyUp;
Public Custom Event SystemKeyUp 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.