ComponentFactory.Krypton.Docking.KryptonDockingManager.OnDockspaceRemoved C# (CSharp) 메소드

OnDockspaceRemoved() 보호된 메소드

Raises the DockspaceRemoved event.
protected OnDockspaceRemoved ( DockspaceEventArgs e ) : void
e DockspaceEventArgs An DockspaceAddingEventArgs containing the event args.
리턴 void
        protected virtual void OnDockspaceRemoved(DockspaceEventArgs e)
        {
            if (DockspaceRemoved != null)
                DockspaceRemoved(this, e);
        }
KryptonDockingManager