private void btnXoa_Click(object sender, RoutedEventArgs e) { GetDataChiTiet(); MessageBoxResult dir = MessageBox.Show("Bạn có chắc chắn muốn xóa sản phẩm?", "Thông báo", MessageBoxButton.YesNo, MessageBoxImage.Question); try { if (dir == MessageBoxResult.Yes) { if (sp_BUS.XoaSanPham(spChon_DTO.MaSP)) { MessageBox.Show("Bạn đã xóa sản phẩm!", "Thông báo"); Grid_Loaded(sender, e); } else { MessageBox.Show("Xóa sản phẩm không thành công!"); } } } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void btnXoa_Click(object sender, EventArgs e) { if (dgvSanPham.SelectedRows[0].Index != -1) { string strMaSP = dgvSanPham.SelectedRows[0].Cells["colMaSP"].Value.ToString(); if (FormMessage.Show("Bạn chắc chắn muốn xoá sản phẩm này?", "Xác nhận xoá", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { if (_SanPhamBUS.XoaSanPham(strMaSP)) { FormMessage.Show("Xoá thành công!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information); TaiDuLieu(); } else { FormMessage.Show("Xoá thất bại!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error); } } } }