Hello,
When binding a combobox I am setting every other item's BackColor to "Gainsboro". However, when I click the combobox and hover the items in the combobox the items backcolor I changed aren't highlighing blue anymore
Attached is a picture of what Im seeing:
I would like all items to Highlight blue.
Thanks,
When binding a combobox I am setting every other item's BackColor to "Gainsboro". However, when I click the combobox and hover the items in the combobox the items backcolor I changed aren't highlighing blue anymore
for(var i=0; i < 10;i++) { // bind result to control var comboBoxItem = new RadComboBoxItem(i.ToString(), i.ToString()); // add alternating row color if (i % 2 == 0) comboBoxItem.BackColor = Color.Gainsboro; comboBox.Items.Add(comboBoxItem); }Attached is a picture of what Im seeing:
I would like all items to Highlight blue.
Thanks,