Beispiel #1
0
        public void SwipeDown(object sender, EventArgs e)
        {
            if (_unclicked)
            {
                Click(new Point(0, 0));
            }
            SwipeArgs sa       = (SwipeArgs)e;
            Point     newPoint = new Point(0, -MyLoopList.GetDraggableVLength() * sa.Progress);

            Drag(newPoint, 0);
        }
Beispiel #2
0
 private void OnSwiped(SwipeArgs args)
 {
     _didSwipe = true;
     Element.OnSwiped(args.Direction, args.Velocity);
 }
 private void OnSwiped(SwipeArgs args)
 {
     _didSwipe = true;
     Element.OnSwiped(args.Direction, args.Velocity, _previousPoint);
 }