Calendar::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 outside the range specified by DisplayDateStart and DisplayDateEnd -or- The specified date is in the BlackoutDates collection. |
| InvalidOperationException | If set to anything other than null when SelectionMode is set to None. |
Identifier field | |
Metadata properties set to true |
Use this property when SelectionMode is set to SingleDate. In other modes, this property will always be the first date in SelectedDates.
<Calendar 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 Calendar with a particular range of displayable dates, and sets the currently selected and displayed date.
<!-- Create a Calendar that displays 1/10/2009 through 4/18/2009. --> <Calendar Margin="20" SelectedDate="2/15/2009" DisplayDate="3/15/2009" DisplayDateStart="1/10/2009" DisplayDateEnd="4/18/2009"/>
.NET Framework
Available since 4.0
Silverlight
Available since 2.0
Available since 4.0
Silverlight
Available since 2.0
Show: