void HandleGenericMotion(object sender, GenericMotionEventArgs e)
        {
            RoundedBoxView view = this.Element as RoundedBoxView;

            if (view != null && view.IsInteractable == false)
            {
                e.Handled = false;
            }
            else
            {
                _detector.OnTouchEvent(e.Event);
            }
        }
Example #2
0
 private void HandleGenericMotion(object sender, GenericMotionEventArgs e)
 {
     _detector.OnTouchEvent(e.Event);
 }
 /// <summary>
 /// Handles the Generic Motion Events that occur.
 /// </summary>
 /// <param name="sender">The object that raised the event</param>
 /// <param name="e">Information about the Touch event</param>
 private void HandleGenericMotion(object sender, GenericMotionEventArgs e)
 {
     this.gestureDetector.OnTouchEvent(e.Event);
 }
Example #4
0
		void HandleGenericMotion (object sender, GenericMotionEventArgs e)
		{
			Detector.OnTouchEvent (e.Event);
		}
 void HandleGenericMotion(object sender, GenericMotionEventArgs e)
 {
     _gestureDetector.OnTouchEvent(e.Event);
 }
Example #6
0
 private void OnGenericMotion(object sender, GenericMotionEventArgs e)
 {
     m_gestureDetector.OnGenericMotionEvent(e.Event);
 }