wpf how to use a converter for child bindings of multibinding?
I need a multibinding of bunch boolean properties but with inversing some of these like an example: <StackPanel> <StackPanel.IsEnabled> <MultiBinding Converter="{StaticResource BooleanAndConverter}"> <Binding Path="IsInitialized"/> <Binding Path="IsFailed" Converter="{StaticResource InverseBooleanConverter}"/> </MultiBinding> </StackPanel.IsEnabled> </StackPanel.IsEnabled> But I got a InvalidOperationException from a InverseBooleanConverter with message "The target must be a boolean". My InverseBooleanConverter is: [ValueConversion(typeof(bool), typeof(bool))] public class