0
我在Xamarin的UWP項目中創建了一個導航欄。如何在Xamarin中以編程方式更改導航欄的背景顏色?
App.xaml.cs
...
public app()
{
InitializeComponent();
MainPage = new NavigationPage(new LoginPage()){
BarBackgroundColor = Color.Black;
}
}
所以,如果我在設置頁面,我需要以編程方式更改導航欄的顏色。
SettingPage.xaml.cs
...
private void clicked_btn(sender, e) {
...
// how can I get the handle of navigationbar and then change the attribute of one???
}
這可能嗎?
有沒有辦法我可以做?