WPF设置ListBoxItem失去焦点时的背景色不生效的问题
程序员文章站
2022-07-14 08:37:23
...
默认情况下,当选中的ListBoxItem失去焦点的时候,其背景色变为白色;而通常情况下,我们希望其失去焦点时候背景色仍然为蓝色,网上查了下资料,说是通过如下代码可以解决:
<Style TargetType="ListBoxItem">
<Style.Resources>
<!--SelectedItem with focus-->
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}" Color="#3399FF"/>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}" Color="White"/>
<!--SelectedItem without focus-->
<SolidColorBrush x:Key="{x:Static SystemColors.ControlBrushKey}" Color="#3399FF"/>
<SolidColorBrush x:Key="{x:Static SystemColors.ControlTextBrushKey}" Color="White"/>
</Style.Resources>
</Style>
可我加入到项目中并没有效果,后来在*上查到,原来是.Net版本问题,在.Net4.5之前的版本是可以的,.Net4.5之后的版本还需要在程序启动时候设置如下代码:
FrameworkCompatibilityPreferences.AreInactiveSelectionHighlightBrushKeysSupported = false;