vote up 2 vote down star
<Button IsEnabled="{Binding (Not IsDisabled)}" />

Is there a way to do it with pure xaml, or I will have to do it via code? PS. I asked the question knowing that I can create a boolean converter like this:

<ValueConversion(GetType(Boolean), GetType(Boolean))> _
Public Class BooleanFlagSwitchConverter : Implements IValueConverter

    Public Function Convert(value As Object, targetType As Type, _
            parameter As Object, culture As CultureInfo) As Object _
            Implements IValueConverter.Convert
        Return Not value
    End Function

    Public Function ConvertBack(value As Object, targetType As Type, _
            parameter As Object, ByVal culture As CultureInfo) As Object _
            Implements IValueConverter.ConvertBack
        Return Not value
    End Function

End Class

[ValueConversion(typeof(bool), typeof(bool))]
public class BooleanFlagSwitchConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, 
        CultureInfo culture)
    {
        return !(bool)value;
    }

    public object ConvertBack(object value, Type targetType, object parameter, 
        CultureInfo culture)
    {
        return !(bool)value;
    }
}
flag

1 Answer

vote up 2 vote down check

It doesn't exist. Look at the properties on the Binding class. There's nothing, other than a converter that will do what you want.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.