Share via


CoreComponentInputSource.KeyUp Evento

Definición

Se genera cuando se suelta una pulsación de tecla para el elemento XAML hospedado activo actual.

// Register
event_token KeyUp(TypedEventHandler<IInspectable, KeyEventArgs const&> const& handler) const;

// Revoke with event_token
void KeyUp(event_token const* cookie) const;

// Revoke with event_revoker
CoreComponentInputSource::KeyUp_revoker KeyUp(auto_revoke_t, TypedEventHandler<IInspectable, KeyEventArgs const&> const& handler) const;
public event TypedEventHandler<object,KeyEventArgs> KeyUp;
function onKeyUp(eventArgs) { /* Your code */ }
coreComponentInputSource.addEventListener("keyup", onKeyUp);
coreComponentInputSource.removeEventListener("keyup", onKeyUp);
- or -
coreComponentInputSource.onkeyup = onKeyUp;
Public Custom Event KeyUp As TypedEventHandler(Of Object, KeyEventArgs) 

Tipo de evento

Se aplica a