Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 1.76 KB

control_onkeyup_926147804.md

File metadata and controls

25 lines (18 loc) · 1.76 KB
-api-id -api-type
M:Microsoft.UI.Xaml.Controls.Control.OnKeyUp(Microsoft.UI.Xaml.Input.KeyRoutedEventArgs)
winrt method

Microsoft.UI.Xaml.Controls.Control.OnKeyUp

-description

Called before the KeyUp event occurs.

-parameters

-param e

The data for the event.

-remarks

As it's implemented directly on Control, OnKeyUp has an empty implementation. But each ancestor in a control's hierarchy may have provided an implementation. You won't be able to see this implementation because it's internal native code. In some cases a control will already have existing OnEvent overrides that mark the event Handled. For key events, controls are usually only handling for certain keys, by checking values in KeyRoutedEventArgs. For example, ButtonBase detects the Space key as a way to fire Click. Control code or your code probably shouldn't be suppressing all key events, because it's a common pattern to let key events bubble to the root visual so that they can be shortcuts or accelerators for app interaction. For more info see Keyboard interactions.

-examples

-see-also

UIElement.KeyUp, KeyRoutedEventArgs, Keyboard interactions, Events and routed events overview