Class ObservableCollectionWrap<T>
Wraps a collection to provide property and collection changed notification events.
Inherited Members
Namespace: TheXDS.MCART.Types
Assembly: MCART.Mvvm.dll
Syntax
public class ObservableCollectionWrap<T> : ObservableWrap<T, ICollection<T>>, INotifyPropertyChangeBase, IRefreshable, INotifyPropertyChanged, INotifyCollectionChanged, ICollection<T>, IEnumerable<T>, IEnumerable
Type Parameters
| Name | Description |
|---|---|
| T | Type of elements contained in the collection. |
Constructors
| Edit this page View SourceObservableCollectionWrap()
Initializes a new instance of the ObservableCollectionWrap<T> class.
Declaration
public ObservableCollectionWrap()
ObservableCollectionWrap(ICollection<T>)
Initializes a new instance of the ObservableCollectionWrap<T> class.
Declaration
public ObservableCollectionWrap(ICollection<T> collection)
Parameters
| Type | Name | Description |
|---|---|---|
| ICollection<T> | collection | Collection to use as the underlying collection. |