ListView not updated correctly with ObservableCollection
I'm currently using an observable collection to store my data objects for a ListView. Adding new objects to the collection works just fine, and the listView updates properly. However when I try to change one of the properties of an object in the collection the listView will not update properly. For example, I have an observable collection DataCollection. I try _DataCollections.ElementAt(count).Status = "Active"; I perform this change before a long operation due to a button press. The listView will not reflect the change. So I add myListView.Items.Refresh() ;. This works, however the listView