GoDigram for .NET Framework and .NET Core
Northwoods.Go Namespace / GoView Class / OnDragDrop Method
In This Topic
    OnDragDrop Method
    In This Topic
    Handle the DragDrop event by canonicalizing the input event and behaving differently for internal drag-drops than for drops coming from other windows.
    Syntax
    [EditorBrowsable(EditorBrowsableState.Advanced)]
    protected override void OnDragDrop( 
       DragEventArgs evt
    )

    Parameters

    evt
    Remarks
    This sets up LastInput and then it either calls DoInternalDrop for drags that started in this view (because the current tool is an instance of GoToolDragging) or it calls DoExternalDrop for dragging from another Control.
    See Also