AGS.Editor.AboutDialog.btnOK_Click C# (CSharp) Метод

btnOK_Click() приватный Метод

private btnOK_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
Результат void
        private void btnOK_Click(object sender, EventArgs e)
        {
            if (Utilities.IsShiftPressed())
            {
                splashPage.ConstructSpecial("splash-mittens.bmp", ImageLayout.Zoom, "", Color.White);
                this.Text = "The cast and crew of Mittens 2007 Canada";
                txtInfo.Text = "Greetings from the cast of Mittens VI. One Fop to rule them all ... One Fop to find them, One Fop to come to them all and in darkness be drowned by them.";
                this.DialogResult = DialogResult.None;
            }
        }