Skip to content

Latest commit

 

History

History
43 lines (31 loc) · 1.22 KB

calendardatepicker_calendarviewstyle.md

File metadata and controls

43 lines (31 loc) · 1.22 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.CalendarDatePicker.CalendarViewStyle
winrt property

Windows.UI.Xaml.Controls.CalendarDatePicker.CalendarViewStyle

-description

Gets or sets the Style associated with the control's internal CalendarView object.

-xaml-syntax

<CalendarDatePicker CalendarViewStyle={StaticResource styleResourceKey}/>
- or -
<CalendarDatePicker>
  <CalendarDatePicker.CalendarViewStyle>
    <Style TargetType="CalendarView">
      oneOrMoreSetters
    </Style>
  </CalendarDatePicker.CalendarViewStyle>
</CalendarDatePicker>

-xaml-values

styleResourceKey
styleResourceKeyThe key that identifies the style being requested. The key refers to an existing resource in a ResourceDictionary.
oneOrMoreSetters
oneOrMoreSettersOne or more Setter elements with Property attributes that target the dependency properties of the CalendarView component of the CalendarDatePicker template.
## -property-value The current style of the [CalendarView](calendarview.md) object.

-remarks

-examples

-see-also