我有一个带有 UWP 的 Xamarin 项目,需要在 UWP 中设置顶部命令栏的背景颜色。我尝试在共享项目的 App.xaml 中添加以下内容(这会产生错误):
<Style TargetType="CommandBar">
<Setter Property="Background" Value="#F44336" />
</Style>
我还尝试在 UWP 项目的 App.xaml 中添加以下内容:
<Application.Resources>
<ResourceDictionary>
<Style TargetType="AppBar">
<Setter Property="Background" Value="#F44336"/>
</Style>
</ResourceDictionary>
</Application.Resources>
没有发生任何明显的变化。有人可以帮忙吗?