private void btnLuu_Click(object sender, EventArgs e)
 {
     GanDuLieu(lx);
     if (flag == 0)
     {
         if (lxCtrl.ThemLoaiXe(lx))
         {
             MessageBox.Show("Thêm thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
         }
         else
         {
             MessageBox.Show("Thêm thất bại", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
         }
     }
     else
     {
         if (lxCtrl.SuaLoaiXe(lx))
         {
             MessageBox.Show("Sửa thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
         }
         else
         {
             MessageBox.Show("Sửa thất bại", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
         }
     }
     frmLoaiXe_Load(sender, e);
     dis_en(false);
 }