Xamarin.Forms: 无限滚动的ListView(懒加载方式) (2)

由于本项目采用的是选项卡模板,并且目前已使用Shell方式(可以参考:Xamarin.Forms Shell。
修改AppShell.xaml文件代码如下:

<TabBar> <Tab Title="Infinite Scroll" Icon="icon_about.png"> <ShellContent Title="Single"> <local:SingleViewPage> </local:SingleViewPage> </ShellContent> <ShellContent Title="Group"> <local:GroupViewPage> </local:GroupViewPage> </ShellContent> </Tab> <ShellContent Title="About" ContentTemplate="{DataTemplate local:AboutPage}" Icon="icon_about.png" Route="AboutPage" /> <ShellContent Title="Browse" ContentTemplate="{DataTemplate local:ItemsPage}" Icon="icon_feed.png" /> </TabBar>

此处,对于TabbedPage的用法出现错误,因此只能采用此种方法处理页面的布局

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wppxpy.html