在 Xamarin 的视图上通过手指滑动启动事件
Launch event on finger slide over the View in Xamarin
在 Xamarin 中对于 Android 和 iOS 有没有可能实现这样的事情?
到目前为止,我一直在视图上使用点击事件,但我不确定当我实际点击任何地方时如何引发事件,然后将手指滑过 taprecogniser 或其他手势识别器。
使用Swipe手势
var leftSwipeGesture = new SwipeGestureRecognizer { Direction = SwipeDirection.Left };
leftSwipeGesture.Swiped += OnSwiped;
myView.GestureRecognizers.Add(leftSwipeGesture);
在 Xamarin 中对于 Android 和 iOS 有没有可能实现这样的事情?
到目前为止,我一直在视图上使用点击事件,但我不确定当我实际点击任何地方时如何引发事件,然后将手指滑过 taprecogniser 或其他手势识别器。
使用Swipe手势
var leftSwipeGesture = new SwipeGestureRecognizer { Direction = SwipeDirection.Left };
leftSwipeGesture.Swiped += OnSwiped;
myView.GestureRecognizers.Add(leftSwipeGesture);