Interface IObservableListWrap
Define una serie de miembros a implementar por una clase que defina un envoltorio observable sobre un IList.
Inherited Members
Namespace: TheXDS.MCART.Types.Base
Assembly: MCART.Mvvm.dll
Syntax
public interface IObservableListWrap : IList, ICollection, IEnumerable, INotifyCollectionChanged, IRefreshable
Properties
| Edit this page View SourceUnderlyingList
Obtiene una referencia a la lista subyacente de este envoltorio observable.
Declaration
IList UnderlyingList { get; }
Property Value
Type | Description |
---|---|
IList |
Methods
| Edit this page View SourceSubstitute(IList)
Sustituye la lista subyacente por una nueva.
Declaration
void Substitute(IList newCollection)
Parameters
Type | Name | Description |
---|---|---|
IList | newCollection | Lista a establecer como la lista subyacente. |