查找 MahApps Metro 标题栏颜色
Find MahApps Metro title bar color
我正在使用 MahApps Metro
,我正在尝试获得 TitleBar
颜色以与其他控制器一起使用:
在 App.xaml
文件中,我只能看到:
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Accents/BaseLight.xaml" />
这是theme
的名字,我可以把BaseLight
改成Red
,例如我的TitleBar
变成Red
,但我真的很喜欢这个颜色.
有什么关于如何找到这种颜色的建议吗?
应该是
AccentColorBrush
您可以这样访问:
<TextBox Background="{DynamicResource AccentColorBrush}" />
我正在使用 MahApps Metro
,我正在尝试获得 TitleBar
颜色以与其他控制器一起使用:
在 App.xaml
文件中,我只能看到:
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Accents/BaseLight.xaml" />
这是theme
的名字,我可以把BaseLight
改成Red
,例如我的TitleBar
变成Red
,但我真的很喜欢这个颜色.
有什么关于如何找到这种颜色的建议吗?
应该是
AccentColorBrush
您可以这样访问:
<TextBox Background="{DynamicResource AccentColorBrush}" />