DatePicker.CalendarStyle 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置在呈现日历时使用的样式。
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
属性值
在呈现日历时使用的样式。
示例
以下示例创建一个 Style 用于 Calendar 该属性的样式并将其分配给该 CalendarStyle 属性。
<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>
注解
使用 CalendarStyle 属性指定下拉列表日历的外观。
依赖项属性信息
标识符字段 | CalendarStyleProperty |
元数据属性设置为 true |
无 |
XAML 属性用法
<DatePicker CalendarStyle="{resourceExtension styleResourceKey}"/>
XAML 值
resourceExtension
以下项之一: StaticResource
或 DynamicResource
。 有关详细信息,请参阅 XAML 资源。
styleResourceKey
标识所请求的模板的键。 该键引用了一个 ResourceDictionary. 中的现有资源。