I have a view model (an ObservableCollection
list) set as ItemsSource
for a ListBox
. When I refresh this view model (get new data from network), should I set ItemsSource
again, or just let it notify the ListBox
?
Which solution gains the most performance ?
P/S: Answer targeting Windows Phone 7 is prefered.