نقل قول نوشته شده توسط moradian مشاهده تاپیک
سلام

Form2 frm2;
public Form1()
{
InitializeComponent();
frm2 = new Form2();
frm2.Show();
this.LocationChanged += new EventHandler(Form1_LocationChanged);
}
private void Form1_LocationChanged(object sender, EventArgs e)
{
int x = this.Width + this.Location.X;
int y = this.Location.Y;
frm2.Location = new Point(x, y);
}
کد خوبی نوشتید اگه قابلیت Dock شدن و تغییر سایز هر دو با هم رو هم بهش اضافه کنید کامل میشه.