后退按钮后的换行符-Xamarin Forms

时间:2019-02-05 00:41:00

标签: xaml xamarin xamarin.forms

我是Xamarin表单的新手,已经从我的主页定向到导航页面,我希望标题显示在与“后退”按钮相同的行上,但当前它显示在下面的行中,如下所示-< / p>

https://i.imgur.com/lpsJjle.png

我正在使用以下代码来显示标题-

<NavigationPage.TitleView>
    <StackLayout>
        <Label 
            Text="About" TextColor="{StaticResource lightGreen}">
            <Label.FontFamily>
                <OnPlatform x:TypeArguments="x:String"
                                Android="GothamRoundedMedium.ttf#GothamRoundedMedium"
                                iOS="GothamRoundedMedium">
                </OnPlatform>
            </Label.FontFamily>
        </Label>
    </StackLayout>
</NavigationPage.TitleView>

和此代码可导航到“关于”页面-

Navigation.PushAsync(new NavigationPage(new Survey2()));

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:0)

使用new NavigationPage,您将再次创建一个新的NavigationPage。

所以,只需使用:

Navigation.PushAsync(new Survey2());

如果您需要使用Modal,请使用以下方法:

Navigation.PushModalAsync(new NavigationPage(new Survey2()));