How to change the background color for a DatePicker's Calendar? Thanks!
问问题
2240 次
1 回答
0
如果您说的是 Microsoft 的 WPF Toolkit DatePicker,一种可能性是获取 Toolkit 的源代码,然后修改 DatePicker 的 Generic.xaml 主题文件。在 DatePicker 样式的 DatePickerTextBox 部分中添加 Background 属性,例如:
<primitives:DatePickerTextBox x:Name="PART_TextBox"
Grid.Row="0" Grid.Column="0"
Foreground="{TemplateBinding Foreground}"
Background="{TemplateBinding Background}"
HorizontalContentAlignment="Stretch"
VerticalContentAlignment="Stretch" />
于 2009-04-30T15:24:42.863 回答