private void simpleButtonXoa_Click(object sender, EventArgs e) { if (!_isDeleteButton) // button nhap lai { ResetControl(); return; } if (_lopBUS.KiemTraTonTai_MaLop(textEditMaLop.Text)) { if (MsgboxUtil.YesNo("Bạn có muốn xóa toàn bộ danh sách học sinh, " + "bảng điểm học sinh và toàn bộ thông tin liên quan đến lớp " + textEditTenLop.Text + " hay không?") == DialogResult.No) { return; } _lopBUS.Xoa_Lop(textEditMaLop.Text); MsgboxUtil.Success("Đã xóa lớp " + textEditTenLop.Text + " thành công!"); HienThi_DSLop(); } }