天真的解决方案:只需将画笔添加到资源并从 ComboBox 的 Background 属性(通过 StaticResource 绑定)引用它:
<Window x:Class="WpfApplication2.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<SolidColorBrush x:Key="BackgroundColorKey" Color="Red"/>
<Style TargetType="{x:Type ComboBox}">
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="{StaticResource BackgroundColorKey}" />
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<Grid>
<ComboBox Height="25"/>
</Grid>
问题:选择项目后,背景颜色被重置为默认颜色。解决此问题的唯一解决方案是覆盖组合框的默认模板。
修复:修改默认组合框模板。ComboBox 默认模板存在于 msdn 上。这是链接 - http://msdn.microsoft.com/en-us/library/ms752094(v=vs.100).aspx。请参阅“组合框控件模板示例”部分。
相关链接:
MouseOver 突出显示样式在一秒钟后返回默认值(由 Aero 引起?)
http://social.msdn.microsoft.com/Forums/en/wpf/thread/a18891e9-8879-4819-9679-247341782f60