, . , , , , DPI . , DPI . , . . Fix:
Form2 f2 = new Form2();
f2.Show();
f2.Left = this.Left;
f2.Top = this.Top;
f2.Size = this.Size;
, Form2 Load . "" " ()". :
Form2 f2 = new Form2();
f2.Show(this);
2:
protected override void OnLoad(EventArgs e) {
base.OnLoad(e);
this.Location = Owner.Location;
this.Size = Owner.Size;
}