Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
The ObservableCollection is much like System.Collections.CollectionBase... it just provides a base class for the collection and also implements the INotifyCollectionChanged interface. It will not be possible for us to change the inheritance structure of the BusinessLayer class to include the ObservableCollection. However, we don't have to... all we need is to implement the INotifyCollectionChanged interface, which we already do through the IBindingListView implementation on the BusinessBindingSource. So, as it stands, you can wrap a business object within a BBS and use it as the data source for any WPF control or grid, like the Infragistics xamGrid (I think that's what it's called... not positive).
|