Closed SittenSpynne closed 4 years ago
@SittenSpynne Thank you for the feedback. I'm sure that your feedback is make sense. I'll fix it.
@SittenSpynne I have just published v7.4.1 to NuGet. Please check it.
If you found issues related to this, then please re-open or create a new issue.
I have a control on my view that has a boolean property
HasErrors
. I noticed ReactiveProperty has a property like that and implements INotifyPropertyChanged, so I expected if I bind my control's property to the ReactiveProperty's property, they would stay in sync.Today I determined the ReactiveProperty never raises its event when
HasErrors
changes. So I have to take the clunkier approach of making a separate property depend onObserveErrors
. It'd be nice if I could bind toHasErrors
, and technically ReactiveProperty isn't following the INotifyPropertyChanged contract.