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

OnClosing() protected method

Raises the FloatingWindow.Closing event.
protected OnClosing ( CancelEventArgs e ) : void
e CancelEventArgs The event data.
return void
        protected virtual void OnClosing(CancelEventArgs e)
        {
            EventHandler<CancelEventArgs> handler = Closing;
            if (handler != null)
            {
                handler(this, e);
            }
        }
FloatingWindow