SilverFlow.Controls.FloatingWindow.OnClosed C# (CSharp) Method

OnClosed() protected method

Raises the FloatingWindow.Closed event.
protected OnClosed ( EventArgs e ) : void
e System.EventArgs The event data.
return void
        protected virtual void OnClosed(EventArgs e)
        {
            this.FloatingWindowHost.Remove(this);
            this.FloatingWindowHost.ActivateTopmostWindow();
            UnsubscribeFromStoryBoardEvents();

            EventHandler handler = Closed;
            if (handler != null)
            {
                handler(this, e);
            }

            Dispose();
        }
FloatingWindow