The Problem:
ItemsControl
( or a control derived from ItemsControl
) in the
view.
I found the answer using Snoop to debug XAML.
The issue is that you are trying to bind to the ToString() method and that does not raise the PropertyChanged event. If you look at the XAML bindings you will notice that the ObservableCollection is actually changing.
Now look at each item control and it's texts binding in the "Text" property. There are none, it's just text.
To fix this simply add an ItemsControl ItemTemplate with a DataTemplate that contains the elements you'd like to be displayed.
We now have a green light on binding. RaisePropertyChanged is being called.
Ta-da!