I have a binding to a date:
<TextBlock Text="{Binding Path=EndDateTime, StringFormat=d}"/>
What I want is that when its value is DateTime.MinValue (DateTime’s default value) to display null instead of the date.
Is this possible without using a converter, simply by somehow extending my binding’s StringFormat property?
Is there any other XAML only solution?
Thank you in advance!
You could use a DataTrigger in the TextBlock’s Style