예제 #1
0
        private void CallEventOnGesture(SwipeDirection swipeDirection)
        {
            GestureStackLayout qestureStackLayout = (GestureStackLayout)Element;

            if (swipeDirection == SwipeDirection.Left)
            {
                qestureStackLayout.OnSwipeLeft();
            }
            else
            {
                qestureStackLayout.OnSwipeRight();
            }
        }
예제 #2
0
        private void HandleOnSwipeLeft(MotionEvent motionEventArgs)
        {
            GestureStackLayout gestureStackLayout = (GestureStackLayout)Element;

            gestureStackLayout.OnSwipeLeft();
        }