In WPF, I have an element whose visibility should be bound to a checkbox. I can use BindingPath=IsChecked and Converter={StaticResource convVisibility} to make it visible. However, I want to make it hidden and there is no BindingPath=IsUnchecked. Can I invert the value of the boolean to visibility converter? Thanks for help.
This is in the window xaml:
<Window.Resources>
<BooleanToVisibilityConverter x:Key="convVisibility"/>
</Window.Resources>