I have three forms: 1 - Mdiparent, and the other two - a simple form (Form1 and Form2).
Parent:
var frmForm1 = new Form1{ MdiParent = this};
frmForm1.Show();
Form 1: var MParent = new Parent (); var frmForm2 = new Form2 {MdiParent = MParent}; frmForm2.Show ();
My problem is that if I show Form2 from Form1, it goes beyond MdiParent.
source
share