| ObservableFilteredCollectionT Constructor |
Namespace: TomsToolbox.ObservableCollectionsAssembly: TomsToolbox.ObservableCollections (in TomsToolbox.ObservableCollections.dll) Version: 2.21.0+44d18b541fc9419ec3c549350a832394661b2a4d
XMLNS for XAML: Not mapped to an xmlns.
Syntax public ObservableFilteredCollection(
IEnumerable sourceCollection,
Func<T, bool> filter,
params string[] liveTrackingProperties
)
Public Sub New (
sourceCollection As IEnumerable,
filter As Func(Of T, Boolean),
ParamArray liveTrackingProperties As String()
)
Parameters
- sourceCollection IEnumerable
- The source collection. This instance will not hold a reference to the source collection.
- filter FuncT, Boolean
- The filter.
- liveTrackingProperties String
- The live tracking properties. Whenever one of these properties in any item changes, the filter is reevaluated for the item.
See Also