In WPF, I have a ListView associated with an ObservableCollection in code. I have working code that adds and removes items from a list, updating the collection.
I have a Change button that opens a dialog box and allows the user to edit the values ββfor the selected ListView item. However, when I change the item, the list view is not updated. I suppose this is because I am not actually adding / removing elements from the collection, but simply changing one of my elements.
How do I show the list view that it needs to synchronize the binding source?
source share