How to create a new filtered collection when the source collection's property changed? #872
-
I'm writing a canExecute observable using reactive ui and dynamic data. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
So, you need an Pull the items
.FilterOnObservable(static item => item.WhenPropertyChanged(x => x.IsChecked))
.IsNotEmpty(); |
Beta Was this translation helpful? Give feedback.
So, you need an
IObservable<bool>
that istrue
when there is at least one item in the set that is selected?Pull the
DynamicData.Aggregations
namespace and do...