我想将页面的背景设置为用户选择的默认主题颜色 我用:
Background="{StaticResource ApplicationPageBackgroundThemeBrush}"
但这只会返回透明背景。这不是默认主题颜色的正确方法吗?
答案 0 :(得分:4)
Windows 8-8.1回答
实际上没有Windows Store应用程序无法访问用户选择的强调色。
Windows 10回答
(Color)Application.Current.Resources["SystemAccentColor"]
为您提供当前的强调色,您可以使用new UISettings().ColorValuesChanged
事件监控更改。