11 references to DragGestureRecognizer
Microsoft.Maui.Controls (8)
DragAndDrop\DragGestureRecognizer.cs (6)
14
public static readonly BindableProperty CanDragProperty = BindableProperty.Create(nameof(CanDrag), typeof(bool), typeof(
DragGestureRecognizer
), true);
17
public static readonly BindableProperty DropCompletedCommandProperty = BindableProperty.Create(nameof(DropCompletedCommand), typeof(ICommand), typeof(
DragGestureRecognizer
), null);
20
public static readonly BindableProperty DropCompletedCommandParameterProperty = BindableProperty.Create(nameof(DropCompletedCommandParameter), typeof(object), typeof(
DragGestureRecognizer
), null);
23
public static readonly BindableProperty DragStartingCommandProperty = BindableProperty.Create(nameof(DragStartingCommand), typeof(ICommand), typeof(
DragGestureRecognizer
), null);
26
public static readonly BindableProperty DragStartingCommandParameterProperty = BindableProperty.Create(nameof(DragStartingCommandParameter), typeof(object), typeof(
DragGestureRecognizer
), null);
31
/// Initializes a new instance of the <see cref="
DragGestureRecognizer
"/> class.
DragAndDrop\DragStartingEventArgs.cs (1)
8
/// Provides data for the <see cref="
DragGestureRecognizer
.DragStarting"/> event.
DragAndDrop\DropGestureRecognizer.cs (1)
30
public static readonly BindableProperty DropCommandProperty = BindableProperty.Create(nameof(DropCommand), typeof(ICommand), typeof(
DragGestureRecognizer
), null);
Microsoft.Maui.Controls.Compatibility (3)
iOS\DragAndDropDelegate.cs (2)
141
SendEventArgs<
DragGestureRecognizer
>(rec =>
202
SendEventArgs<
DragGestureRecognizer
>(rec => rec.SendDropCompleted(args), element);
iOS\EventTracker.cs (1)
614
if (Forms.IsiOS11OrNewer && recognizer is
DragGestureRecognizer
)