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
You can write a ValueConverter that automatically negates the inpurt before returning it. Have a look at BenCon's blog for a short reading on value converters.