iRuler.Dialogs.AboutBox.button_OK_Click C# (CSharp) 메소드

button_OK_Click() 개인적인 메소드

private button_OK_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        private void button_OK_Click(object sender, EventArgs e)
        {
            if (!m_bAutoClose)
            {
                this.DialogResult = DialogResult.OK;
                this.Close();
            }
        }