equal
deleted
inserted
replaced
10 /// <summary> |
10 /// <summary> |
11 /// Gesture event who return a object with a Gesture String value |
11 /// Gesture event who return a object with a Gesture String value |
12 /// </summary> |
12 /// </summary> |
13 public class GestureRoutedEventArgs : RoutedEventArgs |
13 public class GestureRoutedEventArgs : RoutedEventArgs |
14 { |
14 { |
15 public String Gesture { get; private set; } |
15 public Gesture Gesture { get; private set; } |
16 |
16 |
17 public GestureRoutedEventArgs() : base() { } |
17 public GestureRoutedEventArgs() : base() { } |
18 public GestureRoutedEventArgs(String gesture) : base() { this.Gesture = gesture; } |
18 public GestureRoutedEventArgs(Gesture gesture) : base() { this.Gesture = gesture; } |
19 public GestureRoutedEventArgs(RoutedEvent routedEvent) : base(routedEvent) { } |
19 public GestureRoutedEventArgs(RoutedEvent routedEvent) : base(routedEvent) { } |
20 public GestureRoutedEventArgs(RoutedEvent routedEvent, String gesture) : base(routedEvent) { this.Gesture = gesture; } |
20 public GestureRoutedEventArgs(RoutedEvent routedEvent, Gesture gesture) : base(routedEvent) { this.Gesture = gesture; } |
21 public GestureRoutedEventArgs(RoutedEvent routedEvent, Object source) : base(routedEvent, source) { } |
21 public GestureRoutedEventArgs(RoutedEvent routedEvent, Object source) : base(routedEvent, source) { } |
22 public GestureRoutedEventArgs(RoutedEvent routedEvent, Object source, String gesture) : base(routedEvent, source) { this.Gesture = gesture; } |
22 public GestureRoutedEventArgs(RoutedEvent routedEvent, Object source, Gesture gesture) : base(routedEvent, source) { this.Gesture = gesture; } |
23 } |
23 } |
24 } |
24 } |