I have ListView which I am binding to a Dictionary collection, but new new items are added to the collection, the listview is not updating. How this can be achieved in WPF?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
Both sides of WPF binding should support INotifyCollectionChanged interface in order to notify about collection changes. Dictionary does not support it. So you can either use ObservableCollection class (it does not provide functionality like search a value by associated key), or you can create you own ObservableDictionary class which implements both IDictionary and INotifyCollectionChanged interfaces PS: If you need bind both keys and values of the Dictionary - you've to implement own class, if it is enough displaying either Keys or Values - simply create ObservableCollection based on dictionary.Keys or dictionary.Values. Useful links: |
|||||||
|