I have the following stack panel
<StackPanel>
<TextBlock Text="{Binding AddressLine1}" />
<TextBlock Text="{Binding AddressLine2}" />
<TextBlock Text="{Binding AddressLine3}" />
<TextBlock Text="{Binding AddressLine4}" />
</StackPanel>
and my AddressLine2 string is null on the bound object.
My stack panel renders like
| AddressLine1 |
| |
| AddressLine3 |
| AddressLine4 |
but I want it to render like
| AddressLine1 |
| AddressLine3 |
| AddressLine4 |
is this possible, or am I missing an obvious way to do it?
Thanks, Chris