tags:

views:

121

answers:

1

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!

+1  A: 

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.

Andy
Heck, even an old BindingList<T> works.
Matt Hamilton