我在UWP(通用Windows 10应用程序)中使用Hub控件,因为它比FlipView和Pivot更有效,但我发现UWP中的Hub Control不支持分页功能,它只支持连续滚动。
我想通过使用XAML和C#
将分页功能添加到Hub控件<Hub x:Name="hub">
<HubSection>
<DataTemplate>
<Grid>
</Grid>
</DataTemplate>
</HubSection>
<HubSection>
<DataTemplate>
<Grid>
</Grid>
</DataTemplate>
</HubSection>
</Hub>
答案 0 :(得分:0)
您需要管理HubSection的集合项源,因此当您滚动到某个部分时,您将检查源集合中当前项的位置,并决定在需要时加载更多。