Xamarin表单导航栏颜色将在Windows平台中更改

时间:2017-02-10 15:17:37

标签: windows xamarin colors xamarin.forms navigationbar

我正在使用Portable Xamarin表单解决方案来创建可在IOS,Android和Windows中运行的应用程序。我们在设置导航栏的背景颜色时遇到问题。 BarBackground颜色不起作用所以我们尝试更改每个平台中的颜色,但无法在Windows中执行此操作。 在此先感谢。

1 个答案:

答案 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
    };
}