Exemplo n.º 1
0
 public SwipeEventArgs(SwipDirection direction) {
     Direction = direction;
 }
Exemplo n.º 2
0
 public virtual void OnSwipe(SwipDirection direction) {
     var handler = Swipe;
     if (handler != null) {
         handler(this, new SwipeEventArgs(direction));
     }
 }