CoreWindow.KeyUp Event

Definition

The event that's raised when a non-system key is released after a press.

The delegate type for this event is TypedEventHandler<TSender,TResult>, where TSender is of type CoreWindow, and TResult is of type KeyEventArgs.

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

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

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

Event Type

Implements

Remarks

Apps do not receive this event when an IME is enabled. The Input Method Editor (IME) handles all keyboard input, and sets Handled to true.

Applies to

See also