How to change NavBar colour of MasterMainPage in Xamarin

后端 未结 2 628
忘了有多久
忘了有多久 2021-01-22 13:44

I\'m building a Xamarin cross-platform App!

The problem is I want to change the colour of NavigationBar of MainPage which is MasterPage

2条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-22 14:42

    The NavigationPage has a BarBackgroundColor property which you can set.

    Referred this

    var nav = new NavigationPage(new ContentPage { Title = "Page" } );
    nav.BarBackgroundColor = Color.Blue;
    

提交回复
热议问题