I know this works fine:
<TextBox IsEnabled="{Binding ElementName=myRadioButton, Path=IsChecked}" />
...but what I really want to do is negate the result of the binding expression similar to below (psuedocode). Is this possible?
<TextBox IsEnabled="!{Binding ElementName=myRadioButton, Path=IsChecked}" />