カレンダーの日のタイトルの前景色を変更しようとしています。標準の.net 4.0 Datepickerを使用しています。カレンダーは Datepicker に組み込まれています。
リソースファイルに次のコードがあります。しかし、それは機能しません。
<Style TargetType="{x:Type CalendarItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type CalendarItem}">
<ControlTemplate.Resources>
<DataTemplate x:Key="DayTitleTemplate">
<TextBlock
FontWeight="Bold"
FontFamily="Verdana"
FontSize="9.5"
Foreground="Red"
HorizontalAlignment="Center"
Text="{Binding}"
Margin="0,6,0,6"
VerticalAlignment="Center"/>
</DataTemplate>
</ControlTemplate.Resources>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
ここで私が見逃しているものを見るのを手伝ってくれる人はいますか? ありがとう、