Exemplo n.º 1
0
        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();
        }
Exemplo n.º 2
0
        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();
        }