作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要更改弹出列表中组合框所选项目的突出显示颜色。我找到了几个解释如何做到这一点的教程,但它们要么使用我没有也无法获得的 Blend,要么涉及更改系统默认颜色——这对我来说似乎是一个黑客。
有人可以指出我需要覆盖的模板,或者告诉我需要设置的属性吗?
最佳答案
覆盖 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>
关于wpf - 设置 ComboBox 选中项高亮颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1278144/
我是一名优秀的程序员,十分优秀!