我正在使用Portable Xamarin表单解决方案来创建可在IOS,Android和Windows中运行的应用程序。我们在设置导航栏的背景颜色时遇到问题。 BarBackground颜色不起作用所以我们尝试更改每个平台中的颜色,但无法在Windows中执行此操作。 在此先感谢。
答案 0 :(得分:3)
You are using Xamarin.forms. So, change the constructor of App.Xaml.cs in your PCL.
public App()
{
MainPage = new NavigationPage(new Page1())
{
BarBackgroundColor = Color.Gray
};
}