ICoreWindow.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
ICoreWindow::KeyUp_revoker KeyUp(auto_revoke_t, TypedEventHandler<CoreWindow, KeyEventArgs const&> const& handler) const;
event TypedEventHandler<CoreWindow,KeyEventArgs> KeyUp;
function onKeyUp(eventArgs) { /* Your code */ }
iCoreWindow.addEventListener("keyup", onKeyUp);
iCoreWindow.removeEventListener("keyup", onKeyUp);
- or -
iCoreWindow.onkeyup = onKeyUp;
Event KeyUp As TypedEventHandler(Of CoreWindow, KeyEventArgs) 

Event Type

Applies to

See also