I´m using a CalendarDatePicker
<CalendarDatePicker x:Name="DatePick" DisplayMode="Decade" Date="{Binding DisplayValue, Mode=TwoWay}"/>
The Problem is when i bind the Date Property the Picker doesn't display the default Placeholder Text(select a date) anymore, instead it now displays 01.01.1916 if the property is null(The Property is always set null).
public DateTimeOffset? DisplayValue {get;set;}
if i manually put null as a value for Date, it now displays the PlaceholderText again.
DatePick.Date=null;
And the binding still works/i`m getting the desired values back when picking a date. So is there an possibility to display the placeholder text without the using the codebehind?