Class FilterableListViewModel<T>
Inheritance
FilterableListViewModel<T>
Assembly: Benday.Presentation.dll
Syntax
public class FilterableListViewModel<T> : SelectableCollectionViewModel<T>, INotifyPropertyChanged where T : class, ISelectableItem
Type Parameters
Fields
|
Edit this page
View Source
_OriginalItems
Declaration
protected ObservableCollection<T>? _OriginalItems
Field Value
Properties
|
Edit this page
View Source
Filter
Declaration
public string Filter { get; set; }
Property Value
Methods
|
Edit this page
View Source
Initialize(IEnumerable<T>)
Resets the collection to the specified values.
Declaration
public override void Initialize(IEnumerable<T> values)
Parameters
Overrides
Implements