This Textblock, defined below, shows when the window first loads because it has no Datacontext (and hence the converter code is not run) until an item has been selected from another control e.g. TreeView.
<TextBlock
Name="tbkDocumentNotFound"
Style="{StaticResource StandardText}"
Margin="4,4,2,0"
TextWrapping="Wrap"
Visibility="{Binding Path=IsDownloaded, Converter={StaticResource docNotFoundVisibilityConverter}, Mode=TwoWay}"
Text="The document could not be found.">
</TextBlock>
So how do I stop the it from appearing when it has no DataContext?
Thanks.
To provide a default value (used when the target of a Binding can't be found) you use the FallbackValue
, for example:
Visibility="{Binding Path=IsDownloaded, FallbackValue=Collapsed}"
This should be the case when there is no DataContext.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With