我正在使用MahApps Metro
而我正试图使用TitleBar
颜色与其他控制器一起使用:
在App.xaml
文件中我只能看到:
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Accents/BaseLight.xaml" />
哪个是theme
名称,我可以将BaseLight
更改为Red
以获取问题,我的TitleBar
变为Red
,但我真的很喜欢这种颜色。
有什么建议如何找到这种颜色?
答案 0 :(得分:2)
应该是
AccentColorBrush
你可以像这样访问它:
<TextBox Background="{DynamicResource AccentColorBrush}" />