Exemplo n.º 1
0
 public void CreateLongPress(GestureRecognizerStateUpdatedDelegate gestureRecognizerStateUpdatedDelegate)
 {
     longpressgesture = new LongPressGestureRecognizer();
     longpressgesture.StateUpdated += gestureRecognizerStateUpdatedDelegate;
     FingersScript.AddGesture(longpressgesture);
 }
Exemplo n.º 2
0
 public void CreateScale(GestureRecognizerStateUpdatedDelegate gestureRecognizerStateUpdatedDelegate)
 {
     scalegesture = new ScaleGestureRecognizer();
     scalegesture.StateUpdated += gestureRecognizerStateUpdatedDelegate;
     FingersScript.AddGesture(scalegesture);
 }
Exemplo n.º 3
0
 public void CreateTab(GestureRecognizerStateUpdatedDelegate gestureRecognizerStateUpdatedDelegate)
 {
     tapgesture = new TapGestureRecognizer();
     tapgesture.StateUpdated += gestureRecognizerStateUpdatedDelegate;
     FingersScript.AddGesture(tapgesture);
 }