private void btnRegistration_Click(object sender, EventArgs e) { frmRegistration fr = new frmRegistration(); fr.Show(); this.Hide(); }
private void registrationToolStripMenuItem_Click(object sender, EventArgs e) { frmRegistration freg = new frmRegistration(); freg.MdiParent = this; freg.Show(); }