private void pictureBox2_Click(object sender, EventArgs e) { this.Close(); Teacher th = new Teacher(); th.Show(); }
private void button3_Click(object sender, EventArgs e) { this.Close(); Teacher th = new Teacher(); th.Show(); }
private void newToolStripMenuItem_Click(object sender, EventArgs e) { newTeacher = new Teacher(this); newTeacher.MdiParent = this; newTeacher.Show(); }
private void toolStripButton1_Click(object sender, EventArgs e) { newTeacher = new Teacher(this); newTeacher.MdiParent = this; newTeacher.Show(); }