作为以下示例:
<ShellItem Title="Bottom Tab Sample"
Style="{StaticResource BaseStyle}">
<ShellSection Title="AR" Icon="ia.png">
<ShellContent ContentTemplate="{DataTemplate local:ARPage}"/>
</ShellSection>
<ShellSection Title="Photo" Icon="photo.png">
<ShellContent ContentTemplate="{DataTemplate local:PhotoPage}"/>
</ShellSection>
两页。如何在xamarin shell的标题栏中添加文本框(搜索框)?
答案 0 :(得分:0)
就像在“常规” Forms应用程序中一样,您可以在ContentPage自身中自定义TitleView。
使用Shell,您可以使用以下内容显示SearchBar
<Contentpage xmlns=...
...
<Shell.TitleView>
<SearchBar />
</Shell.TitleView>
</ContentPage>`