1
我試圖改變便攜式類庫項目的資產淨值BarBackgroundColor
背景顏色,所以如何更改導航欄顏色上Xamarin.FormsXamarin.forms如何更改導航欄顏色
我試圖改變便攜式類庫項目的資產淨值BarBackgroundColor
背景顏色,所以如何更改導航欄顏色上Xamarin.FormsXamarin.forms如何更改導航欄顏色
的NavigationPage有您可以設置一個BarBackgroundColor
屬性。
https://developer.xamarin.com/api/type/Xamarin.Forms.NavigationPage/
var nav = new NavigationPage(new ContentPage { Title = "Page" });
nav.BarBackgroundColor = Color.Blue;
,我應該做的......它是靜態的財產..could請你添加一些代碼...我得到錯誤\t的對象引用需要非靜態字段,方法或屬性'Xamarin.Forms.NavigationPage.BarBackgroundColor.get' –
BarBackgroundColorProperty是BarBackgroundColor屬性的靜態後備屬性。當您實例化NavigationPage時設置BarBackgroundColor。 – Paul
所以我建議你們在應用程序類新的前例如:NavigationPage(new LoginPage()){BarBackgroundColor = Color.Green} –