0

我有一个待办事项列表应用程序,Pivot其中包含多个PivotItems,每个项目都包含一个ListBox带有待办事项的项目。我的添加按钮将用户带到另一个屏幕,他们可以在其中添加项目。

但是,当我向后导航时,活动PivotItem将不再垂直滚动。如果我向左或向右移动,然后返回,它会再次滚动。

有谁知道发生了什么?这是一些代码

    <Grid x:Name="ContentPanel">
        <controls:Pivot x:Name="PivotControl" ItemsSource="{Binding Lists}">
            <controls:Pivot.HeaderTemplate>
                <DataTemplate>
                    <TextBlock Text="{Binding Name}"/>
                </DataTemplate>
            </controls:Pivot.HeaderTemplate>
            <controls:Pivot.ItemTemplate>
                <DataTemplate>
                    <ListBox Height="Auto" VerticalAlignment="Stretch">
                          <!-- Listbox items -->
                    </ListBox>
                </DataTemplate>
            </controls:Pivot.ItemTemplate>
        </controls:Pivot>
     </Grid>
4

0 回答 0