如何更改默认为蓝色的Fluent Ribbon UI后台菜单的颜色?
问问题
3616 次
2 回答
4
您需要设置后台背景颜色。这将更新 MenuButton、BackstageTabItems 和后台面板角落的嗖嗖声。下面的示例将颜色设置为红色。
<Fluent:Backstage Background="Red">
<Fluent:BackstageTabControl>
<Fluent:BackstageTabItem Header="New"/>
<Fluent:BackstageTabItem Header="Print"/>
</Fluent:BackstageTabControl>
</Fluent:Backstage>
于 2014-07-23T15:19:39.657 回答
3
3.4.0 版:您可以使用 MetroColors.ThemeColorKey 属性更改功能区主题颜色。将以下代码放入 App.xaml 文件中:
<Application.Resources>
<ResourceDictionary>
<!-- This "override" is needed to change the ribbon theme color, do not remove! -->
<Color x:Key="{x:Static fluent:MetroColors.ThemeColorKey}">#FFF66AC1</Color>
...
于 2015-06-24T13:38:43.270 回答