Inheritance: 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);
 }