以下のようにリストボックスに表示する必要があります。シナリオは、複数のグループの後に水平に配置されたアイテムが続くことです。
GroupA
GroupA Description
GroupB
GroupB Description
Items Available
ItemA ItemB ITemC
このコードで試すことができます
<Style x:Key="ContainerStyle" TargetType="{x:Type GroupItem}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Expander Header="{Binding ....}" IsExpanded="True">
<ItemsPresenter />
</Expander>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
<ListBox x:Name="lbPersonList" Margin="19,17,162,25" AlternationCount="2">
<ListBox.GroupStyle>
<GroupStyle ContainerStyle="{StaticResource ContainerStyle}"/>
</ListBox.GroupStyle>
<ListBox.ItemTemplate>
<DataTemplate>
<TextBlock Text="{Binding ...}"/>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
注:コードのバインディングを調整してください