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(); }
private void Button_ClickConsultaProducto(object sender, RoutedEventArgs e) { productHandler.Actualizarxml(); myNavigationFrame.NavigationService.Navigate(new ProductoShow(productHandler)); }