private void BtnXoa_ItemClick(object sender, ItemClickEventArgs e) { if (XtraMessageBox.Show("Bạn có chắc chắn muốn xóa ?", "CẢNH BÁO", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.No) { return; } int rowIndex = gvMain.FocusedRowHandle; string colID = "Customer_ID"; string value = gvMain.GetRowCellValue(rowIndex, colID).ToString(); if (BUS_NhaCungCap.KiemTraNCC(value) == true) { BUS_NhaCungCap.XoaNCC(value); Action.Module = "Nhà Cung Cấp"; Action.ActionName = "Xóa"; Action.Reference = value; Action.LuuThongTin(); LoadData(); } else { return; } }