Is it possible to display this TextBlock, only if the Address.Length > 0 ? I\'d like to do this directly into the xaml, I know I could put all my controls pr
Address.Length > 0
You can create a StringToVisibility converter.
StringToVisibility
It will return Visibility.Visible if bound string is not null or empty and Visibility.Collapsed if it is.
Visibility.Visible
is not null or empty
Visibility.Collapsed
Use this converter while binding Address with Visibility property of your TextBlock.
Address
Visibility
TextBlock