这个问题源于我在stackoverflow中的最后一个问题。自动滚动到特定项目的问题已解决,但现在我想将所选项目背景设置为透明或白色。我怎样才能做到这一点??
更新 1
<ListBox ItemsSource="{Binding SomeData}"
SelectedIndex="{Binding SomeIndex}">
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel Orientation="Vertical" />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
<ListBox.ItemTemplate>
<DataTemplate>
<SomeChart DataContext="{Binding }" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
对于这个例子,我需要一种自定义选定项颜色的方法。