Compartilhar via


InputKeyboardSource.KeyUp Evento

Definição

Ocorre quando o usuário libera uma tecla que foi pressionada quando a tecla ALT também não foi pressionada.

// 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 de evento

Comentários

Os aplicativos não recebem esse evento quando um IME (Editor de Método de Entrada) está habilitado. O IME (Editor de Método de Entrada) manipula todas as entradas de teclado e define Handled como true.

Aplica-se a

Confira também