突出显示组合框中的某些选项

时间:2010-04-05 10:57:20

标签: .net user-interface

我有一个下拉框,其中包含一些比其他项目更受欢迎的项目,我希望当组合框扩展时,这些项目会有不同的背景颜色(比如Color.Yellow)。我看到BackColor但是有没有办法将背景颜色应用于单个项目?

编辑:感谢Astander的领导,以下是我解决问题的方法:

    Dim item = CType(e.Item, ImageComboBoxItem)
    If item.Value.Popular Then
        e.Appearance.BackColor = Color.Yellow
    End If

1 个答案:

答案 0 :(得分:1)