You are employed as an application developer at ABC.com. You are currently in the process of
creating a Windows Presentation Foundation (WPF) application, named ABCApp35, with the use
of Microsoft .NET Framework 4.
You have created a collection class named Items. You then configured an instance of the Items
class, named Itemslist, and bound the data to a ListBox control.
The Items collection class is configured to have a set amount of Items, but the properties of the
Items objects within the collection are allowed to be changed.
You want to make sure that the ListBox control automatically displays any modifications to the
Items objects data.
Which of the following actions should you take?
A.
You should consider having the INotifyPropertyChanged interface applied in the Items class.
B.
You should consider having the ICollectionView interface applied in the Items class.
C.
You should consider configuring the TargetNullValue property of the ListBox control’s Binding
object.
D.
You should consider reconfiguring the UpdateSourceExceptionFilter property of the ListBox
control’s Binding object.
Explanation: