private void btnMyStudyGroups_Click(object sender, EventArgs e) { TeacherStudyGroups wnd = new TeacherStudyGroups(TeacherID); wnd.FormClosed += ((o, s) => { this.Show(); }); wnd.Owner = this; wnd.Show(); this.Hide(); }