コード例 #1
0
ファイル: GesturesController.cs プロジェクト: 33j/kslt
        private void onGestureRecognized(object sender, GesturesEventArgs e)
        {
            if (this.GestureRecognized != null)
            {
                this.GestureRecognized(this, e);
            }

            foreach (Gesture g in this.gestures)
            {
                g.Reset();
            }
        }
コード例 #2
0
        private void onGestureRecognized(object sender, GesturesEventArgs e)
        {
            if (this.GestureRecognized != null)
            {
                this.GestureRecognized(this, e);
            }

            foreach (Gesture g in this.gestures)
            {
                g.Reset();
            }
        }