SyntaxFix
Write A Post
Hire A Developer
Questions
Add one more property in your view model, which will return reverse value. And bind that to button. Like;
in view model:
public bool IsNotReadOnly{get{return !IsReadOnly;}}
in xaml:
IsEnabled="{Binding IsNotReadOnly"}