70-511 · Question #5
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application. You add a ListBox control to the application. The ListBox control is data-bound to an instance of a…
The correct answer is A. Implement the INotifyPropertyChanged interface in the Product class. See the full explanation below for the reasoning.
Question
You use Microsoft .NET Framework 4 to create a Windows Presentation Foundation (WPF) application. You add a ListBox control to the application. The ListBox control is data-bound to an instance of a custom collection class of the Product objects named ProductList. The number of items of the data-bound collection is fixed. However, users can modify the properties of each of the Product objects in the collection. You need to ensure that changes made on the Product objects are automatically reflected in the ListBox control. What should you do?
Options
- AImplement the INotifyPropertyChanged interface in the Product class.
- BImplement the INotifyCollectionChanged interface in the ProductList class.
- CSet the Mode property of the Binding object of the ListBox control to TwoWay.
- DSet the UpdateSourceTrigger property of the Binding object of the ListBox control to
How the community answered
(29 responses)- A69% (20)
- B3% (1)
- C10% (3)
- D17% (5)
Community Discussion
No community discussion yet for this question.