13

我有下面的ItemsControl完美包裹物品,但它没有垂直滚动条来查看包裹的物品。如何让滚动条显示?

    <ItemsControl x:Name="tStack" Grid.Column="0" Grid.Row="1"
                  ItemsSource="{Binding Shows.View}"
                  HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
                  BorderThickness="0.5">
        <ItemsControl.ItemsPanel>
            <ItemsPanelTemplate>
                <WrapPanel Orientation="Horizontal" HorizontalAlignment="Left"
                           VerticalAlignment="Top"/>
            </ItemsPanelTemplate>
        </ItemsControl.ItemsPanel>
        <ItemsControl.ItemTemplate>
            <DataTemplate>
                <Viewbox HorizontalAlignment="Left"  Height="250">
                    <Controls1:MyShowsUserControl Padding="10"/>
                </Viewbox>
            </DataTemplate>
        </ItemsControl.ItemTemplate>
    </ItemsControl>
4

3 回答 3

29

ItemsControl默认情况下不会换行ItemsPresenterScrollViewer因此您必须像这样手动进行:

<ScrollViewer Grid.Column="0" Grid.Row="1">
   <ItemsControl x:Name="tStack" ... >
      <!-- .... -->
   </ItemsControl>
</ScrollViewer>
于 2013-08-23T08:14:07.500 回答
6

将您包装ItemsControlScrollViewer控件中。

<ScrollViewer VerticalScrollBarVisibility="Auto">
  <ItemsControl ...
</ScrollViewer>

请记住将Grid.Column="0" Grid.Row="1"属性放在 ScrollViewer 中,而不是放在 ItemControl 中。

于 2013-08-23T08:13:45.793 回答
0

使用 ScrollViewer 并将属性“VerticalScrollBarVisibility”设置为 true。

< ScrollViewer VerticalScrollBarVisibility="自动">

在这里你的 ItemsControl

</ScrollViewer>

于 2013-08-23T08:24:55.847 回答