Gets or sets the DateTime value specifying the currently displayed month of a year. This is a dependency property.

Namespace:  C1.Phone.Calendar
Assembly:  C1.Phone.Calendar (in C1.Phone.Calendar.dll)
XMLNS for XAML: Not mapped to an xmlns.

Syntax

C#
[TypeConverterAttribute(typeof(DateTimeTypeConverter))]
public DateTime DisplayDate { get; set; }
Visual Basic
<TypeConverterAttribute(GetType(DateTimeTypeConverter))> _
Public Property DisplayDate As DateTime
	Get
	Set
XAML Property Element Usage
<object>
  <object.DisplayDate>
    <DateTime .../>
  </object.DisplayDate>
</object>

Remarks

Changing this property value explicitly or implicitly via the SelectedDate property forces the control to refresh its UI so as to represent an updated month of a year.

See Also