8 references to SwipeGestureRecognizer
Microsoft.Maui.Controls (8)
Platform\GestureManager\GesturePlatformManager.iOS.cs (4)
253 var swipeRecognizer = recognizer as SwipeGestureRecognizer; 258 var swipeGestureRecognizer = weakRecognizer.Target as SwipeGestureRecognizer;
SwipeGestureRecognizer.cs (4)
16 public static readonly BindableProperty CommandProperty = BindableProperty.Create(nameof(Command), typeof(ICommand), typeof(SwipeGestureRecognizer), null); 19 public static readonly BindableProperty CommandParameterProperty = BindableProperty.Create(nameof(CommandParameter), typeof(object), typeof(SwipeGestureRecognizer), null); 22 public static readonly BindableProperty DirectionProperty = BindableProperty.Create(nameof(Direction), typeof(SwipeDirection), typeof(SwipeGestureRecognizer), default(SwipeDirection)); 25 public static readonly BindableProperty ThresholdProperty = BindableProperty.Create(nameof(Threshold), typeof(uint), typeof(SwipeGestureRecognizer), DefaultSwipeThreshold);