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

Application_Exit() private method

Executed when the application is exited.
private Application_Exit ( object sender, EventArgs e ) : void
sender object The sender.
e System.EventArgs Event args.
return void
        private void Application_Exit(object sender, EventArgs e)
        {
            if (IsOpen)
            {
                isAppExit = true;
                try
                {
                    Close();
                }
                finally
                {
                    isAppExit = false;
                }
            }
        }
FloatingWindow