コード例 #1
0
		private void OnDetected(object obj, RotationGestureDetector.DetectedEventArgs e)
		{
            View v1 = e.View;
            e.View = v1;
			
            RotationGesture p1 = e.RotationGesture;
            e.RotationGesture = p1;
		}		
コード例 #2
0
        public void RotationGestureDetectorDetected()
        {
            tlog.Debug(tag, $"RotationGestureDetectorDetected START");
            RotationGestureDetector a1 = new RotationGestureDetector();
			
            a1.Detected += OnDetected;
            a1.Detected -= OnDetected;
			
            RotationGestureDetector.DetectedEventArgs e = new RotationGestureDetector.DetectedEventArgs();
            object o = new object();
			
            OnDetected(o, e);
			
            a1.Dispose();
			
            tlog.Debug(tag, $"RotationGestureDetectorDetected END (OK)");
            Assert.Pass("RotationGestureDetectorDetected");
        }		
コード例 #3
0
 private void OnDetected(object obj, RotationGestureDetector.DetectedEventArgs e)
 {
 }