Skip to content

Instantly share code, notes, and snippets.

@dkalamari
Created April 18, 2014 06:20
Show Gist options
  • Save dkalamari/11027379 to your computer and use it in GitHub Desktop.
Save dkalamari/11027379 to your computer and use it in GitHub Desktop.
ListBox item selected
<ListBox.ItemContainerStyle>
<Style TargetType="ListBoxItem">
<Style.Triggers>
<Trigger Property="IsSelected" Value="True" >
<Setter Property="Background" Value="Transparent" />
<Setter Property="Foreground" Value="Black" />
</Trigger>
</Style.Triggers>
<Style.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent"/>
</Style.Resources>
</Style>
</ListBox.ItemContainerStyle>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment