<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition/>
<RowDefinition Height="40"/>
</Grid.RowDefinitions>
<c:SearchTextBox Grid.ColumnSpan="2" .../>
<ScrollViewer VerticalScrollBarVisibility="Auto" Grid.Row="1">
<ListBox
ItemsSource="{Binding Categories}"
IsSynchronizedWithCurrentItem="True"
... />
</ScrollViewer>
<!-- Here is what I'm talking about:-->
<ListBox ItemsSource="{Binding Products}"
IsSynchronizedWithCurrentItem="True" Grid.Column="1" Grid.Row="1">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
我想要的是右侧列中的项目应该布置为填充窗口宽度,然后创建一个新行,这正是WrapPanel的用途。
问题是,WrapPanel只用一行显示项目,在下面显示一个水平滚动条,而所有项目在右侧“隐藏”超过窗口大小。
我该如何防止这种情况?
答案 0 :(得分:16)
您需要禁用第二个ListBox的水平滚动条。
<ListBox ItemsSource="{Binding}"
ScrollViewer.HorizontalScrollBarVisibility="Disabled" ...>
....
</ListBox>
修改强>
另外,你有理由将ScrollViewer用作第一个ListBox吗?为什么我要问的是ListBox内部已经有ScrollViewer,默认的Visibility是Auto。