J
Juan M. Cervera
I am developing a mdi application, and I would lke to make one MdiChild form
owned by another MdiChild form.
Is it possible ?
I make something like this in the first form (owner form) to open the other
(owned form)
I woluld like they behave like owned and continue being mdi children forms.
OwnedForm owned = new OwnedForm ();
owned .Owner = this;
owned .MdiParent = this.MdiParent;
owned .Show();
The problem is the form is not owned anymore after setting the MdiParent
property
Can anybody help me with this?
Thank you in advance
Juan M. Cervera
owned by another MdiChild form.
Is it possible ?
I make something like this in the first form (owner form) to open the other
(owned form)
I woluld like they behave like owned and continue being mdi children forms.
OwnedForm owned = new OwnedForm ();
owned .Owner = this;
owned .MdiParent = this.MdiParent;
owned .Show();
The problem is the form is not owned anymore after setting the MdiParent
property
Can anybody help me with this?
Thank you in advance
Juan M. Cervera