DatePicker::DisplayDateEnd Property
.NET Framework (current version)
Gets or sets the last date to be displayed.
Assembly: PresentationFramework (in PresentationFramework.dll)
This property affects the Calendar of the DatePicker. For more information, see the Calendar::DisplayDateEnd property.
Identifier field | |
Metadata properties set to true |
<DatePicker DisplayDateEnd="dateTimeString"/>
- dateTimeString
A date that is in one of the formats that are listed in the DateTime XAML Syntax topic.
The following example creates a DatePicker that limits the drop-down calendar to display dates only in the year 2009.
<!-- A DatePicker that has March 23, 2009 selected and displays the Long date format. --> <DatePicker SelectedDateFormat="Long" SelectedDate="3/23/09" DisplayDateStart="1/01/09" DisplayDateEnd="12/31/09" FirstDayOfWeek="Monday"/>
.NET Framework
Available since 4.0
Silverlight
Available since 2.0
Available since 4.0
Silverlight
Available since 2.0
Show: