InputKeyboardSource.KeyUp Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the user releases a key that was pressed when the ALT key was not also pressed.
// 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)
Event Type
Remarks
Apps do not receive this event when an Input Method Editor (IME) is enabled. The Input Method Editor (IME) handles all keyboard input and sets Handled to true.