答案 0 :(得分:3)
使用位置属性。
this.Location = new Point((Screen.PrimaryScreen.WorkingArea.Width - this.Width) / 2,
(Screen.PrimaryScreen.WorkingArea.Height - this.Height));
public Form1()
{
InitializeComponent();
this.StartPosition = FormStartPosition.Manual;
this.Location = ...;
}