상속: System.Windows.Forms.Form
예제 #1
0
파일: Form1.cs 프로젝트: remco138/amanda
 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);
 }