Occurs when a drag operation is dropped onto the control.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public event EventHandler<DragEventArgs> DragDrop
Public Event DragDrop As EventHandler(Of DragEventArgs)
member DragDrop : IEvent<EventHandler<DragEventArgs>,
DragEventArgs>
Value
Type:
SystemEventHandlerDragEventArgsRemarks
This should perform any of the actual drop logic and update the control state to reflect the dropped data.
Any cleanup should be performed in the
DragLeave event, which is called immediately before this event.
See Also