istbox的背景色可以通过以下代码设置
<Stylex:Key="myListboxStyle">
<Style.Resources>
<!-- Background of selected item when focussed -->
<SolidColorBrushx:Key="{x:Static SystemColors.HighlightBrushKey}"Color="Red"/>
<!-- Background of selected item when not focussed -->
<SolidColorBrushx:Key="{x:Static SystemColors.ControlBrushKey}"Color="Green"/>
</Style.Resources>
</Style>
<Gridx:Name="LayoutRoot">
<ListBoxStyle="{StaticResource myListboxStyle}"/>
</Grid>
参考:http://www.wpftutorial.net/ListBoxSelectionBackground.html