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
I would do this with another boolean property called HasAddress which returns Address.Length > 0.
HasAddress
You should also remember to notify the property change for HasAddress in the setter of Address.
Address