AmandaInterface.mainForm.aboutAmandaToolStripMenuItem_Click C# (CSharp) 메소드

aboutAmandaToolStripMenuItem_Click() 개인적인 메소드

private aboutAmandaToolStripMenuItem_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
        private void aboutAmandaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            About aboutForm = new About();
            aboutForm.StartPosition = FormStartPosition.Manual;
            aboutForm.Location = new Point(this.Location.X + (this.Width - aboutForm.Width) / 2, this.Location.Y + (this.Height - aboutForm.Height) / 2);
            aboutForm.Show(this);
        }