private void btnXoa_Click(object sender, EventArgs e) { DialogResult tl; tl = (MessageBox.Show("Bạn có muốn xóa không?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question)); if (tl == DialogResult.Yes) { theloai.DeleteTheLoai(txtMa.Text.Trim()); MessageBox.Show("Xóa thành công!"); LoadData(); } }