DatePicker.CalendarStyle Property

Definition

Gets or sets the style that is used when rendering the calendar.

public:
 property System::Windows::Style ^ CalendarStyle { System::Windows::Style ^ get(); void set(System::Windows::Style ^ value); };
public System.Windows.Style CalendarStyle { get; set; }
member this.CalendarStyle : System.Windows.Style with get, set
Public Property CalendarStyle As Style

Property Value

The style that is used when rendering the calendar.

Examples

The following example creates a Style for Calendar and assigns the style to the CalendarStyle property.

<StackPanel>
  <StackPanel.Resources>
    <Style TargetType="Calendar"
           x:Key="DateTimeCalendar">
      <Setter Property="Background" Value="LightBlue"/>
      <Setter Property="BorderBrush" Value="DarkBlue"/>
      <Setter Property="BorderThickness" Value="5"/>
    </Style>

  </StackPanel.Resources>
  <DatePicker Background="DarkBlue"
              CalendarStyle="{StaticResource DateTimeCalendar}"/>
</StackPanel>

Remarks

Use the CalendarStyle property to specify the appearance of the drop-down calendar.

Dependency Property Information

Identifier field CalendarStyleProperty
Metadata properties set to true None

XAML Attribute Usage

<DatePicker CalendarStyle="{resourceExtension styleResourceKey}"/>  

XAML Values

resourceExtension
One of the following: StaticResource or DynamicResource. For more information, see XAML Resources.

styleResourceKey
The key that identifies the template being requested. The key refers to an existing resource in a ResourceDictionary.

Applies to