I am creating an MDI application in which it has multiple mdiChild forms. When I resize one mdiChild form, it affects the other mdiChild forms.. How can I solve this? There are a lot of questions about mdichild forms here but none of them seems to be the same case as i have.
Example :
When i maximize one mdiChild form, the other will maximize too even though they are set to normal window state already..
EDIT
This is the mdiParent codes where i call the mdiChild forms.
private void editAccountToolStripMenuItem_Click(object sender, EventArgs e)
{
AdminForms.Dialogs.FrmAdminEdit adminedit = new AdminForms.Dialogs.FrmAdminEdit();
adminedit.Show();
adminedit.MdiParent = this;
}
private void listOfCandidatesToolStripMenuItem_Click(object sender, EventArgs e)
{
AdminForms.Dialogs.FrmCandidate cand = new AdminForms.Dialogs.FrmCandidate();
cand.Show();
cand.MdiParent = this;
}
But in run-time, when i resize one of the mdichild, the other mdichild forms are resizing too.. if maximize button is clicked, all of the mdichild will be maximized.
I want the mdiChild that I resize, do not affect the other mdiChild forms..