标签: .net user-interface
我有一个下拉框,其中包含一些比其他项目更受欢迎的项目,我希望当组合框扩展时,这些项目会有不同的背景颜色(比如Color.Yellow)。我看到BackColor但是有没有办法将背景颜色应用于单个项目?
Color.Yellow
BackColor
Dim item = CType(e.Item, ImageComboBoxItem) If item.Value.Popular Then e.Appearance.BackColor = Color.Yellow End If
答案 0 :(得分:1)
看看
ComboBox.DrawItem Event