#371 – Specifying a Default Date for a Calendar Control to Display
August 24, 2011 1 Comment
When you use a Calendar control, it will default to showing the current date when the application starts.
You can override the default date displayed by setting the DisplayDate property.
<Calendar SelectionMode="SingleDate" DisplayDate="7/20/1969"/>
You can also specify a range of dates that the Calendar control is allowed to display by using the DisplayDateStart and DisplayDateEnd properties.
<Calendar SelectionMode="SingleDate" DisplayDateStart="12/7/1941" DisplayDateEnd="8/14/1945"/>
The Calendar control will now allow selecting only dates that fall within this time period. When you navigate to the month containing the earliest date, you’ll be unable to navigate further back in time. Similarly, you’ll be unable to navigate to a date later than the date specified in the DisplayDateEnd property.