0
我在我的應用程序上有一個Appbar,背景是白色,任何想法如何改變? 這裏是我的代碼:Windows商店應用程序:更改Appbar的背景顏色
<AppBar>
<Button
Style="{StaticResource HomeAppBarButtonStyle}" />
</AppBar>
這給:
但我想把它改成這樣:
我在我的應用程序上有一個Appbar,背景是白色,任何想法如何改變? 這裏是我的代碼:Windows商店應用程序:更改Appbar的背景顏色
<AppBar>
<Button
Style="{StaticResource HomeAppBarButtonStyle}" />
</AppBar>
這給:
但我想把它改成這樣:
的AppBar有Background
屬性。使用該屬性設置顏色,例如通過使用資源。
<AppBar Background="{StaticResource AppBarBackground}">
AppBarBackground可能的SolidColorBrush