2 instantiations of DragEventArgs
Microsoft.Maui.Controls (2)
Platform\iOS\DragAndDropDelegate.cs (2)
257 var dragEventArgs = new DragEventArgs(dataPackage, (relativeTo) => CalculatePosition(relativeTo, viewHandlerRef, sessionRef), platformArgs); 277 var dragEventArgs = new DragEventArgs(dataPackage, (relativeTo) => CalculatePosition(relativeTo, viewHandlerRef, sessionRef), platformArgs);
10 references to DragEventArgs
Microsoft.Maui.Controls (10)
DragAndDrop\DragEventArgs.cs (3)
14 /// Initializes a new instance of the <see cref="DragEventArgs"/> class. 23 /// Initializes a new instance of the <see cref="DragEventArgs"/> class. 46 /// Gets the platform-specific arguments associated with the <see cref="DragEventArgs"/>.
DragAndDrop\DropGestureRecognizer.cs (4)
40 public event EventHandler<DragEventArgs> DragLeave; 41 public event EventHandler<DragEventArgs> DragOver; 94 public void SendDragOver(DragEventArgs args) 100 internal void SendDragLeave(DragEventArgs args)
DragAndDrop\PlatformDragEventArgs.cs (1)
5/// Platform-specific arguments associated with the <see cref="DragEventArgs"/>.
Platform\iOS\DragAndDropDelegate.cs (2)
257 var dragEventArgs = new DragEventArgs(dataPackage, (relativeTo) => CalculatePosition(relativeTo, viewHandlerRef, sessionRef), platformArgs); 277 var dragEventArgs = new DragEventArgs(dataPackage, (relativeTo) => CalculatePosition(relativeTo, viewHandlerRef, sessionRef), platformArgs);