Windows应用商店应用:更改Appbar的背景颜色

时间:2013-04-15 08:06:52

标签: c# xaml windows-8 windows-runtime windows-store-apps

我的应用程序上有一个Appbar,背景是白色的,有什么想法我可以改变这个吗? 这是我的代码:

 <AppBar>
     <Button       
    Style="{StaticResource HomeAppBarButtonStyle}" /> 
  </AppBar>

这给出了: enter image description here

但我想将其更改为:enter image description here

1 个答案:

答案 0 :(得分:3)

AppBar有Background属性。使用该属性设置颜色,例如使用资源。

<AppBar  Background="{StaticResource AppBarBackground}">

AppBarBackground可以是SolidColorBrush