Windows Programming/WPF
ListView에서 Item 선택시 선택배경색 없애기
PirTaJa
2016. 8. 8. 13:57
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | <ListView Name="ImageListView" Foreground="{x:Null}"> <ListBox.ItemContainerStyle> <Style TargetType="ListBoxItem"> <Style.Triggers> <Trigger Property="IsSelected" Value="True" > <Setter Property="FontWeight" Value="Bold" /> <Setter Property="Background" Value="Transparent" /> <Setter Property="Foreground" Value="Black" /> <Setter Property="BorderBrush" Value="Coral" /> <Setter Property="BorderThickness" Value="2" /> </Trigger> </Style.Triggers> <Style.Resources> <SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="Transparent"/> <SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="Transparent"/> </Style.Resources> </Style> </ListBox.ItemContainerStyle> </ListView> |