私は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???
}
これは可能ですか?
できることはありますか?