http://windowsclient.net/learn/video.aspx?v=108085
In that video, when I changes data source by add more data the list view doesn't update? Please help me!
http://windowsclient.net/learn/video.aspx?v=108085
In that video, when I changes data source by add more data the list view doesn't update? Please help me!
You should use an ObservableCollection (or any collection that implements INotifyCollectionChanged, really) as the data source for the ListView
. This way any changes made to the collection will be reflected in the ListView
.