Exemplo n.º 1
0
 private void OnGesture(object sender, GesturedEventArgs e)
 {
     if (e.Gesture == GestureType.SwipeLeft)
     {
         TransitionTo(SelectedIndex + 1);
     }
     if (e.Gesture == GestureType.SwipeRight)
     {
         TransitionTo(SelectedIndex - 1);
     }
 }
 private void GesturePanel_OnGestured(object sender, GesturedEventArgs e)
 {
     Gestures.Items.Add(e);
 }