DatePicker::SelectedDate Property
.NET Framework (current version)
Gets or sets the currently selected date.
Assembly: PresentationFramework (in PresentationFramework.dll)
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The specified date is not in the range defined by DisplayDateStart and DisplayDateEnd, or the specified date is in the BlackoutDates collection. |
This property affects the Calendar of the DatePicker. For more information, see the Calendar::SelectedDate property.
Identifier field | |
Metadata properties set to true |
<DatePicker SelectedDate="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 has the date August 10, 2009 selected. The example also binds the DatePicker::Text property to a TextBlock.
<StackPanel> <DatePicker Name="datePicker" SelectedDate="8/10/09" SelectedDateFormat="Long"/> <TextBlock Text="{Binding ElementName=datePicker, Path=Text}"/> </StackPanel>
.NET Framework
Available since 4.0
Silverlight
Available since 2.0
Available since 4.0
Silverlight
Available since 2.0
Show: