Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change selected and unfocused Listbox style to not be grayed out

Tags:

.net

wpf

listbox

I have a really simple WPF ListBox with SelectionMode set to Multiple.

<ListBox SelectionMode="Multiple" /> 

When the ListBox loses focus it's really hard to tell what's been selected because the selection colour changes from blue to a light grey colour. What's the easiest way of changing this behaviour so that it stays blue?

I know it's probably something to do with the ListItem's style, but I can't find where.

Cheers.

Similar: WPF ListView Inactive Selection Color

like image 437
Ray Avatar asked Mar 30 '09 20:03

Ray


1 Answers

I have done something like this using the following in a merged ResourceDictionary, it may help you:

<Style TargetType="ListBoxItem">     <Style.Resources>         <!--SelectedItem with focus-->         <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="LightBlue" Opacity=".4"/>         <!--SelectedItem without focus-->         <SolidColorBrush x:Key="{x:Static SystemColors.InactiveSelectionHighlightBrushKey }" Color="LightBlue" Opacity=".4"/>     </Style.Resources> </Style> 
like image 181
Guy Starbuck Avatar answered Oct 01 '22 07:10

Guy Starbuck