private void toolStripMenuXoa_Click(object sender, EventArgs e) { try { int[] i = gridView1.GetSelectedRows(); string maPC = gridView1.GetRowCellDisplayText(i[0], "MaPC"); if (MsgboxUtil.YesNo("Bạn chắc chắn muốn xóa phân công " + maPC + "?") == DialogResult.Yes) { if (i.Length > 0) { gridView1.DeleteRow(i[0]); PhanCongBUS.Xoa(maPC); StaticClass.LuuThayDoi(); log.GhiFile("Xóa phân công giảng dạy: " + maPC); } } } catch (Exception ex) { ExceptionUtil.ThrowMsgBox(ex.Message); } }