listbox选中元素的背景色

istbox的背景色可以通过以下代码设置

x:Key="myListboxStyle">
    
        
        x:Key="{x:Static SystemColors.HighlightBrushKey}"Color="Red"/>                
        
        x:Key="{x:Static SystemColors.ControlBrushKey}"Color="Green"/>
    

x:Name="LayoutRoot">
  Style="{StaticResource myListboxStyle}"/>

 
参考:http://www.wpftutorial.net/ListBoxSelectionBackground.html

你可能感兴趣的:(wpf)