0

我有一个看起来像这样的样式资源: 编辑:添加代码样式

<Style x:Key="PageHeaderTextStyle" TargetType="TextBlock" BasedOn="{StaticResource HeaderTextStyle}">
    <Setter Property="TextWrapping" Value="NoWrap"/>
    <Setter Property="VerticalAlignment" Value="Bottom"/>
    <Setter Property="Margin" Value="0,0,30,40"/>
    <Setter Property="Foreground" Value="White" />
</Style>

这是启动应用程序时添加的标准样式,但由于某种原因,我所有的页眉都使用黑色作为前景色而不是白色。

编辑:这是我如何应用样式的示例

<TextBlock x:Name="pageTitle" Grid.Column="1" Text="{Binding Group.Title}" Style="{StaticResource PageHeaderTextStyle}" />

在 App.xaml 中,我将 RequestedTheme 设置为“Dark”。

我哪里做错了?

4

0 回答 0