I have a silverlight wp7 application and am using the MVVM pattern. The model contains a list of classes (the class type encapsulates the data of the stock ticker), and this list is used in the view along with the element template.
I understand that for this list to work with Binding, it must be an observable collection (raising the PropertyChanged event does not seem to do anything).
Thus, how can I maintain the decoupling between my model, which must be agnostic for presentation, and the presentation, which requires an observable collection?
Currently, in my View model, I am dynamically creating an observable collection using the data in model.List. It looks like a scrap.
source share