0

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

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

这给出了: 在此处输入图像描述

但我想把它改成这样:在此处输入图像描述

4

1 回答 1

3

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

<AppBar  Background="{StaticResource AppBarBackground}">

AppBarBackground 可以是 SolidColorBrush

于 2013-04-15T08:13:02.527 回答