伙计们,我正在做一个Xamarin.Forms应用程序,您现在可以看到这是我的应用程序:
在此屏幕快照中,您可以看到我的App.xaml.cs,我在其中上传了一个BottomBarPage的StartPage()。
public App()
{
InitializeComponent();
//MainPage = new Login();
NavigationPage nav = new NavigationPage(new StartPage());
Image img = new Image();
img.Source = "about_us.png";
Label label = new Label();
label.Text = "My App";
label.VerticalTextAlignment = TextAlignment.Center;
label.TextColor = Color.Black;
StackLayout stack = new StackLayout();
stack.Children.Add(img);
stack.Children.Add(label);
nav.SetValue(NavigationPage.TitleViewProperty, stack);
//nav.SetValue(NavigationPage.TitleProperty, stack);
nav.SetValue(NavigationPage.BarBackgroundColorProperty, Color.FromHex("#D60000"));
MainPage = nav;
}
正如您在第一个屏幕中看到的那样,我正在尝试在App()中向导航栏中添加标题和应用图标,但不起作用,该怎么做?
答案 0 :(得分:2)
自Xamarin.Forms 3.2.0起,您可以在StartPage.xaml中放置以下布局:
<NavigationPage.TitleView>
<StackLayout Orientation="Horizontal" BackgroundColor="#D60000">
<Image Source="about_us.png" />
<Label Text="My App" VerticalTextAlignment="Center"/>
</StackLayout>
</NavigationPage.TitleView>