Windows.UI.Input.GestureRecognizer.ProcessDownEvent C# (CSharp) Method

ProcessDownEvent() public method

public ProcessDownEvent ( [ value ) : void
value [
return void
		public extern void ProcessDownEvent([In] PointerPoint value);
		public extern void ProcessMoveEvents([In] IVector<PointerPoint> value);

Usage Example

Example #1
0
 private void ControlOnPointerPressed(object sender, PointerRoutedEventArgs pointerRoutedEventArgs)
 {
     detector.CompleteGesture();
     detector.ProcessDownEvent(pointerRoutedEventArgs.GetCurrentPoint(Control ?? Container));
     pointerRoutedEventArgs.Handled = true;
 }
All Usage Examples Of Windows.UI.Input.GestureRecognizer::ProcessDownEvent