ATMLCommonLibrary.forms.IdentificationNumberForm.IdentificationNumberForm_FormClosing C# (CSharp) 메소드

IdentificationNumberForm_FormClosing() 개인적인 메소드

private IdentificationNumberForm_FormClosing ( object sender, FormClosingEventArgs e ) : void
sender object
e FormClosingEventArgs
리턴 void
        private void IdentificationNumberForm_FormClosing(object sender, FormClosingEventArgs e)
        {
            if( System.Windows.Forms.DialogResult.OK == this.DialogResult )
            {
                e.Cancel = !ValidateChildren();
            }
        }