Consider that my ViewModel has the IsBusy propery. Is it possible to have such binding in WPF?
<ProgressBar Visiblity="{Binding IsBusy}" ... />
<Button Visiblity="{Binding !IsBusy}" .../>
Note that I've bound Button's visibility to !IsBusy (Not Busy).
I used to have this on JavaScript MVVM frameworks like knockout.
The expression could be more complex like:
<Button Text="IsBusy && !HasError ? true : false"/>