ComponentFactory.Krypton.Docking.KryptonDockingManager.OnDoDragDropEnd C# (CSharp) Méthode

OnDoDragDropEnd() protected méthode

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