Ejemplo n.º 1
0
 private void UpdateProductList()
 {
     ProductoHandler.Actualizarxml();
     Tipocategory.SelectedIndex = 0;
     busquedaTextBox.Text       = "";
     this.filterList            = new ObservableCollection <Producto>(ProductoHandler.ProductList);
     myDataGrid.ItemsSource     = ProductoHandler.ProductList;
     myDataGrid.DataContext     = ProductoHandler.ProductList;
     myDataGrid.Items.Refresh();
 }
Ejemplo n.º 2
0
 private void Button_ClickConsultaProducto(object sender, RoutedEventArgs e)
 {
     productHandler.Actualizarxml();
     myNavigationFrame.NavigationService.Navigate(new ProductoShow(productHandler));
 }