combobox - DevExpress RepositoryItemComboBox different background color -
does possible set different background color each item of devexpress repositoryitemcombobox? repositoryitemcombobox.appearancedropdown.backcolor affects items.
this can done using repositoryitem's drawitem event. here sample code:
private void repositoryitemcombobox1_drawitem(object sender, listboxdrawitemeventargs e) { if(e.state == drawitemstate.none) { e.appearance.backcolor = e.index % 2 == 0 ? color.green : color.red; } }
Comments
Post a Comment