コード例 #1
0
ファイル: MyBox.cs プロジェクト: kartikeyadubey/ShareClient
 void swipeDetector_GeneralSwipe(object sender, DirectionVelocityAngleEventArgs e)
 {
     Console.WriteLine("{0}: Swipe {1}", this.name, e.Direction);
     flowRouter.ActiveListener = steadyDetector;
 }
コード例 #2
0
ファイル: ImageTracker.cs プロジェクト: kartikeyadubey/share
 void swipeDetector_GeneralSwipe(object sender, DirectionVelocityAngleEventArgs e)
 {
     Update(new Point3D(), "swipe" + e.Direction);
 }
コード例 #3
0
 // スワイプの検出を通知する
 void swipeDetector_GeneralSwipe(object sender, DirectionVelocityAngleEventArgs e)
 {
     direction = e.Direction;
 }
コード例 #4
0
 // スワイプの検出を通知する
 void swipeDetector_GeneralSwipe(object sender, DirectionVelocityAngleEventArgs e)
 {
     direction = e.Direction;
 }
コード例 #5
0
ファイル: HandData.cs プロジェクト: kartikeyadubey/share
 void swipeDetector_GeneralSwipe(object sender, DirectionVelocityAngleEventArgs e)
 {
     Console.WriteLine("Swipe detected");
     Console.WriteLine("{0}: Swipe", e.Direction);
 }
コード例 #6
0
 void swipeDetector_GeneralSwipe(object sender, DirectionVelocityAngleEventArgs e)
 {
     Console.WriteLine("{0}: Swipe {1}", this.name, e.Direction);
     flowRouter.ActiveListener = steadyDetector;
     this.box.BackColor        = Color.Red;
 }