So i have a TextBlock like below where i am displaying a name in the middle with the binding Name.
<TextBlock>
<Run Text="Hello"/> <Run Text="{Binding Name}" /><Run Text=","/>
</TextBlock>
Is there any way to put a condition here to that when 'Name' is null or even better if the current DataContext object is null then i dont display anything at all?