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

OnFloatingWindowRemoved() protected method

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