How do I update an existing element of an ObservableCollection?

12,462

Solution 1

Items in your collection should be of type that implements INotifyPropertyChanged interface. This way your list box will be notified that property value in your single item object has changed. ObservableCollection raises CollectionChanged event only when collection changes (items added, removed, etc.)

Quote from the MSDN library article on ObservableCollection

To fully support transferring data values from binding source objects to binding targets, each object in your collection that supports bindable properties must implement an appropriate property changed notification mechanism such as the INotifyPropertyChanged interface.

Solution 2

For change notification to occur in a binding between a bound client and a data source, your bound type should either:

  • Implement the INotifyPropertyChanged interface (preferred).
  • Provide a change event for each property of the bound type.

Do not do both.

Source: MSDN: INotifyPropertyChanged Interface

Solution 3

I've solved similar problem using BindingList<T> class.

It has ListChanged event fired both on collection and individual item change.

Introduced in .Net 3.5

Share:
12,462
Scott Lawrence
Author by

Scott Lawrence

I lead a small team within Capital One implementing fraud defenses within the agent servicing platform, among other enhancements. I occasionally blog here: http://scottlaw.knot.org/blog/ on technology and my other interests. My technology career to-date has spanned many roles beyond hands-on software engineer, including systems analyst, project manager, scrum master, database administrator, and team lead for previous employers. I earned degrees in computer science (BSc) and business (MBA) at the University of Maryland-College Park.

Updated on June 13, 2022

Comments

  • Scott Lawrence
    Scott Lawrence about 2 years

    I have an instance of ObservableCollection bound to a WPF listbox with two separate data templates (one for display, one for editing). The data template for editing has a one-way binding on the textbox, and a Save button.

    What changes do I need to make so that when I press the Save button (after putting the list item in edit mode), the value I change the textbox to replaces the value in the ObservableCollection (and the display)?