private void btnXoa_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("Bạn có chắc chắn muốn xóa không?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
     {
         try
         {
             Bus.DeLeteTK(txtTK.Text);
             MessageBox.Show("Xóa thành công!", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
             frmThongTinTaiKhoan_Load(sender, e);
         }
         catch (Exception ex)
         {
             MessageBox.Show("Có Lỗi Không thể xóa !");
         }
     }
 }