is there an option to have a CanChange method for a property in my ViewModel, to automatically enable and disable a input field (RadioButton, TextBox, ...) according to the return value of the CanChange method?
This is currently possible for Command with the canExecute delegate, which enables/disables a button based on the canExecute method's return value.
Having such an option would save me a lot of code.
Thanks in advance!