I'm developing an app and need some guidance on the best approach...
For instance I have a main view using its viewmodel to retrieve many recipes. I want to be able to bind each recipe to a recipe user control within an items control and then each control will be responsible for instantiating it's viewmodel.
Should I use a dependency property within the each recipe user control or what other alternatives do people suggest for creating multiple recipe user controls?
I'm keen to adopt MVVM Light given it's Blendability features.