ページのコントロールに標準の前景色を定義しようとしています。ただし、「型 "System.String" のオブジェクトは、型 "Windows.UI.Xaml.Media.Brush" が必要なプロパティに適用できません」というエラーが表示されます。
myPage.xaml 内
<TextBlock TextWrapping="Wrap"
Foreground="{StaticResource ForegroundThemeBrush}" />
StandardStyles.xaml 内
<ResourceDictionary x:Key="Default">
<x:String x:Key="BackgroundThemeBrush">#484848</x:String>
<x:String x:Key="ForegroundThemeBrush">#efefef</x:String>
</ResourceDictionary>