WPF: использовать разностную ориентацию для сгруппированного ICollectionView
У меня есть сгруппированный ListCollectionView
который отображается в ListBox
,
<Style x:Key="GroupHeaderStyle" TargetType="{x:Type GroupItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type GroupItem}">
<StackPanel>
<Label Content="{Binding Path=Name}"/>
<WrapPanel Orientation="Horizontal">
<ItemsPresenter />
</WrapPanel>
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<ListBox ItemsSource="{Binding MyElementView, Mode=OneWay}">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.GroupStyle>
<GroupStyle ContainerStyle="{StaticResource GroupHeaderStyle}" />
</ListBox.GroupStyle>
<ListBox.ItemTemplate>
<DataTemplate DataType="{x:Type model:MyElementViewModel}">
...
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
Теперь все элементы перечислены по вертикали, но я бы хотел разместить группы горизонтально, но элементы внутри группы должны быть перечислены по вертикали. Как я мог это понять?
1 ответ
Решение
GroupStyle
имеет Panel
свойство, которое вы можете установить на ItemsPanelTemplate
:
<ListBox ...>
<ListBox.GroupStyle>
<GroupStyle ContainerStyle="{StaticResource GroupHeaderStyle}">
<GroupStyle.Panel>
<ItemsPanelTemplate>
<StackPanel Orientation="Horizontal"/>
</ItemsPanelTemplate>
</GroupStyle.Panel>
</GroupStyle>
</ListBox.GroupStyle>
<ListBox.ItemTemplate>
<DataTemplate>
...
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>