示例#1
0
 private void Window_Loaded(object sender, RoutedEventArgs e)
 {
     this.device = new KinectMultiTouchDevice(handDataSource, this);
     handDataSource.NewDataAvailable += new Core.NewDataHandler <HandCollection>(handDataSource_NewDataAvailable);
 }
示例#2
0
 private void Window_Loaded(object sender, RoutedEventArgs e)
 {
     this.device      = new KinectMultiTouchDevice(handDataSource, this);
     this.touchPoints = new Dictionary <int, TouchControl>();
     this.LoadImages();
 }