Ejemplo n.º 1
0
 public TouchBox()
 {
     this.InitializeComponent();
     this.tracker = new TouchGestureTracker {
         InputElement = this.InputElement
     };
     this.tracker.Gestured += (_, g) => this.Args.Add(new ArgsVm(g));
 }
Ejemplo n.º 2
0
 public TouchBox()
 {
     InitializeComponent();
     this._tracker = new TouchGestureTracker { InputElement = this.InputElement };
     this._tracker.Gestured += (_, g) => this.Args.Add(new ArgsVm(g));
 }