Calendar.SelectedDate プロパティ

定義

現在選択されている日付を取得または設定します。

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

プロパティ値

現在選択されている日付。 既定値は、null です。

例外

指定された日付が DisplayDateStart および DisplayDateEnd で指定された範囲内にありません。

- または -

指定した日付は BlackoutDates コレクションにあります。

SelectionModeNone に設定されているときに、null 以外に設定する場合。

次の例では、表示可能な日付の特定の範囲を持つ を Calendar 作成し、現在選択されている日付と表示される日付を設定します。

// Create a Calendar that displays 1/10/2009
// through 4/18/2009.
Calendar basicCalendar = new Calendar();
basicCalendar.DisplayDateStart = new DateTime(2009, 1, 10);
basicCalendar.DisplayDateEnd = new DateTime(2009, 4, 18);
basicCalendar.DisplayDate = new DateTime(2009, 3, 15);
basicCalendar.SelectedDate = new DateTime(2009, 2, 15);

// root is a Panel that is defined elswhere.
root.Children.Add(basicCalendar);
' Create a Calendar that displays 1/10/2009 
' through 4/18/2009. 
Dim basicCalendar As New Calendar()
basicCalendar.DisplayDateStart = New DateTime(2009, 1, 10)
basicCalendar.DisplayDateEnd = New DateTime(2009, 4, 18)
basicCalendar.DisplayDate = New DateTime(2009, 3, 15)
basicCalendar.SelectedDate = New DateTime(2009, 2, 15)

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

注釈

依存プロパティ情報

識別子フィールド SelectedDateProperty
に設定されたメタデータ プロパティ true BindsTwoWayByDefault

が に設定されている場合 SelectionMode は、このプロパティを使用します SingleDate。 他のモードでは、このプロパティは常に の最初の SelectedDates日付になります。

XAML 属性の使用方法

<Calendar SelectedDate="dateTimeString"/>  

XAML 値

dateTimeString
DateTime XAML 構文に関するトピックに記載されているいずれかの形式の日付。

適用対象