private void grdDistributor_MouseDoubleClick(object sender, MouseButtonEventArgs e) { Unilever.DTO.Entity.Distributor item = null; try { item = grdDistributor.SelectedItem as Unilever.DTO.Entity.Distributor; } catch (System.Exception ex) { return; } if (item == null) { return; } btnDisAdd.IsEnabled = false; btnDisUpdate.IsEnabled = true; ChangeInput(item); }
private void removeDistributor_Click(object sender, RoutedEventArgs e) { Unilever.DTO.Entity.Distributor item = null; try { item = grdDistributor.SelectedItem as Unilever.DTO.Entity.Distributor; } catch (System.Exception ex) { DXMessageBox.Show("Xoá không thành công!"); } if (new DistributorDAO().Remove(item.Id)) { DXMessageBox.Show("Xoá thành công!"); } else { DXMessageBox.Show("Xoá không thành công!"); } grdDistributor.ItemsSource = new DistributorDAO().GetAll(); }