在代码中设置导航栏标题和图标

时间:2019-01-14 10:39:23

标签: xamarin.forms icons navigationbar tabbedpage

伙计们,我正在做一个Xamarin.Forms应用程序,您现在可以看到这是我的应用程序:

BottomBarPage

在此屏幕快照中,您可以看到我的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()中向导航栏中添加标题和应用图标,但不起作用,该怎么做?

1 个答案:

答案 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>