I have this property inside a ReactiveObject:
bool IsValid => Children.All(child => child.IsValid);
The problem is that, of course, it doesn't raise any change notification when children are modified (their "IsValid" property).
How is this done the right way in ReactiveUI?
NOTE:
- Child is a ReactiveObject, too.
- I can modify both classes, parent and children, to meet RxUI precepts and guidelines with no restriction.