次のようなスタイル リソースがあります: 編集: コード スタイルを追加しました。
<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" に設定しています。
どこで私は間違えましたか?