PivotItem无法向下滚动...任何人对我如何解决这个问题都有任何想法?
无论什么原因,当列表框中绑定的内容长于页面高度时,不会向下滚动。我尝试在pivotitem中添加一个网格,高度设置为auto,但无济于事。
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"></RowDefinition>
</Grid.RowDefinitions>
<controls:Pivot Height="Auto">
<controls:PivotItem Header="Main Information">
<Border CornerRadius="10" Background="#FF5C7590" Height="Auto" Padding="2" BorderThickness="1">
<ListBox x:Name="lbxPropertyItems">
<ListBox.ItemTemplate>
<DataTemplate>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="200" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<TextBlock Margin="5, 0, 0, 0" Grid.Column="0" Text="{Binding Label}" />
<TextBlock Grid.Column="1" Text="{Binding Value}" TextWrapping="Wrap" />
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Border>
</controls:PivotItem>
</controls:Pivot>
</Grid>
感谢您的任何建议。
答案 0 :(得分:1)
问题是StackPanel有一个无限的布局空间,其中设置了方向,因此ListBox中包含的ScrollViewer永远不会在该方向上被激活。处理它的最好方法是将它托管在具有行或列定义的Grid控件中。