Complete() public méthode

public Complete ( ) : void
Résultat void
 private void UIElement_OnManipulationStarted(object sender, ManipulationStartedRoutedEventArgs e)
 {
     e.Handled = true;
     e.Complete();
 }
        private void OnManipulationStarted(object sender, ManipulationStartedRoutedEventArgs e)
        {
            e.Handled = true;

            if (e.PointerDeviceType != PointerDeviceType.Touch &&
                e.PointerDeviceType != PointerDeviceType.Mouse ||
                PointInPalmBlock(new Point(e.Position.X - palmBlock.Margin.Left, e.Position.Y - palmBlock.Margin.Top)))
                e.Complete();
        }
 private void OnFilteredOutManipulationStarted(object sender, ManipulationStartedRoutedEventArgs e)
 {
     e.Handled = true;
     e.Complete();
 }