Calendar.SelectedDate プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
現在選択されている日付を取得または設定します。
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 コレクションにあります。
SelectionMode が None に設定されているときに、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 構文に関するトピックに記載されているいずれかの形式の日付。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET