如何在Xamarin.Forms Shell页面的导航栏中显示视图

k7fdbhmy  于 2022-12-07  发布在  Shell
关注(0)|答案(1)|浏览(151)

如何在Xamarin.Forms Shell页面的导航栏中显示视图?
menu screenshot
MainPage的开头是这样的:

MainPage = new AppShell();
rlcwz9us

rlcwz9us1#

Shell.TitleView附加属性的类型为View,可让任何View显示在导览列中。
虽然此属性可以在Shell子类别对象上设定,但也可以在任何要在导览列中显示检视的网页上设定。例如,下列XAML显示在导览列中显示Label

<Shell.TitleView>
        <Label>title here </Label>
    </Shell.TitleView>

相关问题