Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 2.94 KB

uielement_pointercanceled.md

File metadata and controls

46 lines (29 loc) · 2.94 KB
-api-id -api-type
E:Microsoft.UI.Xaml.UIElement.PointerCanceled
winrt event

Microsoft.UI.Xaml.UIElement.PointerCanceled

-description

Occurs when a pointer that made contact abnormally loses contact.

-xaml-syntax

<uiElement PointerCanceled="eventhandler"/>

-remarks

Some of the reasons why you might get a PointerCanceled occurrence are:

  • User actions that change the relationship of the display area, such as changing resolution or monitor settings
  • Input interactions such as a stylus touching the same surface as a previous touch action
  • The user logs off or similar interruptions that aren't app-specific
  • The number of simultaneous contacts exceeded the number supported by the device

[!IMPORTANT] PointerCanceled might fire instead of PointerReleased. Don't rely on PointerPressed and PointerReleased events always occurring in pairs. To function properly, your app must listen for and handle all events that represent the possible conclusions to a Press action, and that includes PointerCanceled.

If PointerCanceled fires, any pointer captures by that pointer are released. For more info on pointer capture, see CapturePointer.

When handling a PointerCanceled event, anticipate that some of the event data normally available for a pointer event won't be meaningful in the PointerRoutedEventArgs object you get through your handler. For example, the Microsoft.UI.Input.PointerPoint.Position of the pointer is invalid because the pointer no longer exists.

PointerCanceled is a routed event. For more info on the routed event concept, see Events and routed events overview.

PointerCanceled supports the ability to attach event handlers to the route that will be invoked even if the event data for the event is marked Handled. See AddHandler.

-examples

-see-also

PointerRoutedEventArgs, PointerReleased, PointerPressed, CapturePointer, Handle pointer input, Events and routed events overview, Relative mouse movement and CoreWindow, XAML user input events sample