Replies: 1 comment 5 replies
-
I supposed I could implement In your example, you could use |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am develop form with validation with requirement: revalidate property when it's value changed (i.e. with
UpdateSourceTrigger=PropertyChanged
in xaml) only when it already had validation error. I have such code:Would be nice two write
GetErrors(propertyName).Any()
instead ofGetErrors(propertyName)?.Cast<string>().Any() == true
.Beta Was this translation helpful? Give feedback.
All reactions