我需要在弹出列表中更改 ComboBox 所选项目的突出显示颜色。我找到了几个解释如何做到这一点的教程,但他们都使用 Blend,我没有也无法获得,或者涉及更改系统默认颜色 - 这对我来说似乎是一个 hack。
有人可以指出我需要覆盖的模板,或者告诉我需要设置的属性吗?
覆盖SystemColors.HighlightBrushKey
(SystemColors.HighlightTextBrushKey
如果需要):
<ComboBox>
<ComboBox.Resources>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightBrushKey}">Red</SolidColorBrush>
<SolidColorBrush x:Key="{x:Static SystemColors.HighlightTextBrushKey}">Blue</SolidColorBrush>
</ComboBox.Resources>
<ComboBoxItem>One</ComboBoxItem>
<ComboBoxItem>Two</ComboBoxItem>
</ComboBox>
我在这里为 Combobox 创建了一个模板:
http://wpfstyles.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=31388#DownloadId=78720
谢谢, 维卡斯