在我的WPF列表框中,我有一個帶有ControlTemplate的樣式的ListBoxItem樣式。在ControlTemplate的內部,我定義了一個標籤。根據一些細節,我需要更改標籤的字體大小。所以從我的代碼隱藏,我需要確定字體應該是什麼,然後我需要設置它。如何在ControlTemplate中更改標籤的字體大小
這是我與控件模板樣式(我已經去掉了一些無關痛癢的控制)
<Style x:Key="RecordTabList" TargetType="{x:Type ListBoxItem}">
<Setter Property="Background" Value="{DynamicResource RecordIndexTabBackcolor}" />
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Label
x:Name="myLabel" Grid.Column="0" Grid.ColumnSpan="1" Grid.Row="0" Grid.RowSpan="1" Margin="3,-2,0,-2" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Foreground="{DynamicResource RecordIndexTabForeground}"
FontSize="10" Height="Auto" BorderThickness="3,0,0,0"
Content="{Binding Path=Name}" />
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
我怎樣才能做到這一點?