I have an ObservableCollection
I'm attempting to bind to a ListView
. I create everything just fine. The collection has multiple items in it (checked from both ends of the binding in ModelState
and VisualState
, but the View
is never updated. I went ahead and bound directly to the ModelState
's piece and everything worked just fine.
I suspect the cause is that INotifyCollectionChanged
is not being sent through the binding. Is this something I can fix or is this a bug?