We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This value converter takes a boolean as input and returns the inverse (true -> false and false -> true).
It can be declared inline with a binding as a markup extension, or in resources to be shared.
<Label Text="You see me" x:Name="firstLabel" /> <Label Text="Or me." IsVisible="{Binding IsVisible, Source={x:Reference firstLabel}, Converter={cvt:NotBooleanConverter}}" />