Can you have a FallbackValue be set to another property using data binding?

For example, I have a label that's default value will be coming from the DisplayName property however, if it's not populated I'd like to revert to the Name property on the same object.

Code:
<Label Grid.Column="0" Content="{Binding DisplayName, Mode=Default}"/>