Share via


CoreWindow.KeyDown Event

Definition

The event that's raised when a non-system key is pressed.

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

public event TypedEventHandler<CoreWindow,KeyEventArgs> KeyDown;

Event Type

Implements

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.

Applies to

See also