Is there any way to change the value of property at runtime in WPF data binding. Let\'s say my TextBox is bind to a IsAdmin property. Is there anyway I can change that prope
If you specifically want to do this at XAML end (I am not sure the reason for that, unless you have 100s of similar operation of negate) there are only two ways 1) Using IValueConverter 2)write a XAML Markup Extension (Way too much work for this small task :))
Then the other obvious way is to write another property in your ViewModel , which can return the Negative of the IsAdmin property.