private void navbarXoa_LinkClicked(object sender, DevExpress.XtraNavBar.NavBarLinkEventArgs e) { string tenhh = gridViewHangHoa.GetFocusedRowCellValue("TenHangHoa").ToString(); var tb = MessageBox.Show(string.Format("Bạn có chắc chắn muốn ngừng kinh doanh \n {0} ?", tenhh), "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Warning); if (tb == DialogResult.Yes) { BUS_HangHoa hh = new BUS_HangHoa(); int mahh = int.Parse(gridViewHangHoa.GetFocusedRowCellValue("MaHangHoa").ToString()); var flag = hh.XoaHangHoa(mahh); if (flag == true) { MessageBox.Show(string.Format("Bạn đã ngừng kinh doanh \n {0} \n thành công.", tenhh), "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); this.FormLoad(); } } else { return; } }