Join Tim Heuer and Craig Shoemaker to learn to build a simple quiz application using Model-View-ViewModel in Silverlight.
Download code sample: mvvm-sl.zip
Duration: 1 hour
Sorry, this was my mistake. I had created the Questions ObservableCollection as a field instead of a property.
I.e. public ObservableCollection<Question> Questions;
instead of:
public ObservableCollection<Question> Questions { get; set; }
Took me a little while to find :)
Thanks
Robbie