private void btnClickDelete_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e) { if (DialogResult.OK == XtraMessageBox.Show("Xác nhận xóa dữ liệu ?", "Thông báo", MessageBoxButtons.OKCancel)) { int id = int.Parse(gridViewData.GetFocusedRowCellValue("ID").ToString()); objService.Delete(id); loadDataGroup(); } }