Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

DatePicker.DisplayDateEnd Property

Definition

Namespace:
System.Windows.Controls
Assembly:
PresentationFramework.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets or sets the last date to be displayed.

public:
 property Nullable<DateTime> DisplayDateEnd { Nullable<DateTime> get(); void set(Nullable<DateTime> value); };
public DateTime? DisplayDateEnd { get; set; }
member this.DisplayDateEnd : Nullable<DateTime> with get, set
Public Property DisplayDateEnd As Nullable(Of DateTime)

Property Value

The last date to display.

Examples

The following example creates a DatePicker that limits the drop-down calendar to display dates only in the year 2009.

DatePicker datePickerFor2009 = new DatePicker();
datePickerFor2009.SelectedDate = new DateTime(2009, 3, 23);
datePickerFor2009.DisplayDateStart = new DateTime(2009, 1, 1);
datePickerFor2009.DisplayDateEnd = new DateTime(2009, 12, 31);
datePickerFor2009.SelectedDateFormat = DatePickerFormat.Long;
datePickerFor2009.FirstDayOfWeek = DayOfWeek.Monday;

// root is a Panel that is defined elsewhere.
root.Children.Add(datePickerFor2009);
Dim datePickerFor2009 As New DatePicker()
datePickerFor2009.SelectedDate = New DateTime(2009, 3, 23)
datePickerFor2009.DisplayDateStart = New DateTime(2009, 1, 1)
datePickerFor2009.DisplayDateEnd = New DateTime(2009, 12, 31)
datePickerFor2009.SelectedDateFormat = DatePickerFormat.[Long]
datePickerFor2009.FirstDayOfWeek = DayOfWeek.Monday

' root is a Panel that is defined elsewhere. 
root.Children.Add(datePickerFor2009)
<!-- 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"/>

Remarks

This property affects the Calendar of the DatePicker. For more information, see the Calendar.DisplayDateEnd property.

Dependency Property Information

Item Value
Identifier field DisplayDateEndProperty
Metadata properties set to true BindsTwoWayByDefault

XAML Attribute Usage

<DatePicker DisplayDateEnd="dateTimeString"/>

XAML Values

dateTimeString A date that is in one of the formats that are listed in the DateTime XAML Syntax topic.

Applies to

See also


Feedback

Was this page helpful?