UIElement.ManipulationCompleted 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 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. |