private void phongToolStripMenuItem_Click_1(object sender, EventArgs e) { if (this.type == 1) { MessageBox.Show("Bạn là nhân viên, Bạn không có quyền vào mục này !", "Duy Tân University", MessageBoxButtons.OK, MessageBoxIcon.Information); } else if (phong == null) { phong = new Room_Form(); phong.FormClosed += new FormClosedEventHandler(Phong_Form_FormClosed); phong.MdiParent = this; phong.Show(); } else { phong.Activate(); } }
private void Phong_Form_FormClosed(object sender, FormClosedEventArgs e) { phong = null; }