public NavigateDataView() { InitializeComponent(); mStore = new ProductStore(); ICollection<Product> products = mStore.GetAll(); this.DataContext = products; view = (ListCollectionView)CollectionViewSource.GetDefaultView(this.DataContext); view.CurrentChanged += new EventHandler(view_CurrentChanged); lstProducts.ItemsSource = products; }
public DataTemplateList5() { InitializeComponent(); mStore = new ProductStore(); lstProducts.ItemsSource = mStore.GetAll(); }