I will have a 7 small "shopping lists" and then one big containing all the items from the 7 small ones.
Is it possible to use databind and observablecollection so whatever is added/removed/changed from the small lists are updated in the big list?
public ObservableCollection<ShopItem> MondayShopList{ get; set; }
public ObservableCollection<ShopItem> TuesdayShopList{ get; set; }
public ObservableCollection<ShopItem> WedensdayShopList{ get; set; }
public ObservableCollection<ShopItem> ....
public ObservableCollection<ShopItem> TotalShopList { get; set; }