private void btnScholenOverzicht_Click(object sender, EventArgs e) { FrmScholenOverzicht frmScholenOverzicht = new FrmScholenOverzicht(); frmScholenOverzicht.MdiParent = this.MdiParent; frmScholenOverzicht.StartPosition = FormStartPosition.CenterScreen; frmScholenOverzicht.Dock = DockStyle.Fill; frmScholenOverzicht.Show(); this.Close(); }
private void btnScholen_Click(object sender, EventArgs e) { if (ActiveMdiChild != null) { ActiveMdiChild.Close(); } FrmScholenOverzicht frmScholenOverzicht = new FrmScholenOverzicht(); frmScholenOverzicht.MdiParent = this; frmScholenOverzicht.StartPosition = FormStartPosition.CenterScreen; frmScholenOverzicht.Dock = DockStyle.Fill; frmScholenOverzicht.Show(); }