UIElement.ManipulationCompleted Event

Definition

Occurs when a manipulation and inertia on the UIElement object is complete.

public:
 event EventHandler<System::Windows::Input::ManipulationCompletedEventArgs ^> ^ ManipulationCompleted;
public event EventHandler<System.Windows.Input.ManipulationCompletedEventArgs> ManipulationCompleted;
member this.ManipulationCompleted : EventHandler<System.Windows.Input.ManipulationCompletedEventArgs> 
Public Custom Event ManipulationCompleted As EventHandler(Of ManipulationCompletedEventArgs) 

Event Type

Remarks

You can use this event to get information about the manipulation when it completes. For example, you can use the ManipulationCompletedEventArgs.TotalManipulation property to determine the total amount the position of the manipulation changed.

For more information about manipulations, see the Input Overview. For an example of an application that responds to manipulations, see Walkthrough: Creating Your First Touch Application.

Routed Event Information

Identifier field ManipulationCompletedEvent
Routing strategy Bubbling
Delegate EventHandler<TEventArgs> of type ManipulationCompletedEventArgs.

Applies to