private void btnXoaMonHoc_Click(object sender, EventArgs e) { try { DialogResult result = MessageBox.Show("Bạn có chắc muốn xóa môn học này không?", "Question", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button1); if (result == DialogResult.Yes) { MonBUS.Delete(monDTO.MaMon); MessageBox.Show("Xóa môn học thành công"); layDanhSachMon(); txtTenMonHocUpdate.Text = ""; } } catch (System.Exception ex) { MessageBox.Show(ex.Message); } }