解决方法
您需要将StartPosition设置为手动,以使表单设置开始位置为“位置属性”中的值.
public Form1() { InitializeComponent(); this.StartPosition = FormStartPosition.Manual; this.Location = new Point(0,0); }
FormStartPosition.Manual的Intelisense总结
FormStartPosition FormStartPosition.Manual
The position of the form is determined by the System.Windows.Forms.Control.Location property.