We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fae42f6 commit 1ef6c6fCopy full SHA for 1ef6c6f
src/Wpf.Ui/Controls/ListBox/ListBoxItem.xaml
@@ -34,6 +34,10 @@
34
<ContentPresenter />
35
</Border>
36
<ControlTemplate.Triggers>
37
+ <Trigger Property="IsMouseOver" Value="True">
38
+ <Setter TargetName="Border" Property="Background" Value="{DynamicResource MenuBarItemBackgroundSelected}"/>
39
+ </Trigger>
40
+
41
<Trigger Property="IsSelected" Value="True">
42
<Setter TargetName="Border" Property="Background" Value="{DynamicResource ListBoxItemSelectedBackgroundThemeBrush}" />
43
<Setter Property="Foreground" Value="{DynamicResource ListBoxItemSelectedForegroundThemeBrush}" />
0 commit comments