ComponentFactory.Krypton.Docking.KryptonDockingManager.OnDoDragDropEnd C# (CSharp) Method

OnDoDragDropEnd() protected method

Raises the DoDragDropEnd event.
protected OnDoDragDropEnd ( EventArgs e ) : void
e EventArgs An EventArgs containing the event args.
return void
        protected virtual void OnDoDragDropEnd(EventArgs e)
        {
            if (DoDragDropEnd != null)
                DoDragDropEnd(this, e);
        }
KryptonDockingManager