Пример #1
0
 public SwipeEventArgs(SwipDirection direction) {
     Direction = direction;
 }
Пример #2
0
 public virtual void OnSwipe(SwipDirection direction) {
     var handler = Swipe;
     if (handler != null) {
         handler(this, new SwipeEventArgs(direction));
     }
 }