equal
deleted
inserted
replaced
|
1 using System; |
|
2 using System.Collections.Generic; |
|
3 using System.Linq; |
|
4 using System.Text; |
|
5 using GestureControl; |
|
6 using System.Windows.Input; |
|
7 using System.Windows; |
|
8 |
|
9 namespace GestureControl |
|
10 { |
|
11 public class GestureEventArg : RoutedEventArgs |
|
12 { |
|
13 public List<Gesture> Gestures { get; private set; } |
|
14 public double Start, End; |
|
15 |
|
16 public GestureEventArg() : base() { } |
|
17 public GestureEventArg(List<Gesture> gestures, double start, double end) : base() { this.Gestures = gestures; this.Start = start; this.End = end; } |
|
18 } |
|
19 } |