May 2010
Intermediate to advanced
1272 pages
61h 18m
English
ObservableCollection(Of T) CollectionThe System.Collections.ObjectModel.ObservableCollection(Of T) is a special collection that is typically used in WPF applications. Its main feature is that it implements the INotifyPropertyChanged interface, and therefore it can raise an event each time its items are affected by any changes, such as adding, replacing, or removing. Thanks to this mechanism, the ObservableCollection is the most appropriate collection for the WPF data-binding because it provides support for two-way data-binding in which the user interface gets notification of changes on the collection and is automatically refreshed to reflect those changes. Although a practical example of this scenario is offered in the chapters about WPF, ...
Read now
Unlock full access