リストボックス/ラップパネルで別の行の色の効果を取得しようとしています。ただし、向きが水平であるため、代替列は代替色を取得しています。要素を横向きにリストしてからラップするようにします。これに基づいて行に代替色を設定するにはどうすればよいですか。
<ListBox ItemsSource="{Binding MySource}" ItemContainerStyle="{StaticResource alternatingListItemStyle}" AlternationCount="2">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel Orientation="Horizontal" MaxWidth="300"/>
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<CheckBox Content="{Binding MyCaption}"/>
</DataTemplate>
</ListBox.ItemTemplate>