Click or drag to resize

ControlDragDrop Event

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

Value

Type: SystemEventHandlerDragEventArgs
Remarks
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