質問があります
新しい win8 メトロ アプリを作成しましたが、スタイルを取得している場所から取得できません。スタイル ファイルの App.xaml 名を変更しました。私のStyle.xamlは次のようになります
<!-- Page layout roots typically use entrance animations and a theme-appropriate background color -->
<Style x:Key="LayoutRootStyle" TargetType="Panel">
<Setter Property="Background" Value="White"/>
<Setter Property="ChildrenTransitions">
<Setter.Value>
<TransitionCollection>
<EntranceThemeTransition/>
</TransitionCollection>
</Setter.Value>
</Setter>
</Style>
それでも、金色の文字が表示されます。ボタンをホバーすると、ボタンが白に変わります。デフォルトの StandardStyles.xaml と同じ
私は何を間違っていますか?それとも問題なく動作しますか?