ARCed.Forms.Splash.SplashScreenForm.SplashForm_FormClosing C# (CSharp) 메소드

SplashForm_FormClosing() 개인적인 메소드

Prevents the closing of form other than by calling the CloseSplashScreen function
private SplashForm_FormClosing ( object sender, FormClosingEventArgs e ) : void
sender object
e FormClosingEventArgs
리턴 void
        private void SplashForm_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (this.CloseSplashScreenFlag == false)
                e.Cancel = true;
        }