private void Btn_close_Click(object sender, EventArgs e)
 {
     Pn_main_function.Focus();
     this.Close();
     if (MessageBox.Show("Exit programe?", "Confirme exit", MessageBoxButtons.OKCancel) == DialogResult.OK)
     {
         this.Close();
     }
 }
 private void Btn_DatVe_Click(object sender, EventArgs e)
 {
     Pn_main_function.Focus();
     MyResources.ShowFormDatVe();
 }
 private void Btn_PhongChieuPhim_Click(object sender, EventArgs e)
 {
     Pn_main_function.Focus();
     MyResources.ShowFormPhongChieuPhim();
 }