xamarinではナビゲーションの背景画像を変更することはできません。それぞれのプラットフォームでネイティブで行う必要があります。
- アンドロイド:
Ressources /レイアウト/ Toolbar.axmlで背景色を削除して追加します。
android:background="@drawable/yourImage"
2. iOSの
AppDelegate.csで
追加:
UINavigationBar.Appearance.BarTintColor=UIColor.FromPatternImage(UIImage.FromFile("YOURIMAGE.png"));
// To change Text Colors to white here
UINavigationBar.Appearance.TintColor=UIColor.White;
// To change Title Text colors to white here
UINavigationBar.Appearance.SetTitleTextAttributes(new UITextAttributes() { TextColor = UIColor.White});
- 画像
異なるressourcesフォルダに画像を置くことを忘れないでください。
希望があなたを助けよう!
素晴らしい!魅力的に働いた! –