I am trying to set the background color of a RadMenuItem based on some logic in order to highlight a particular item in the menu. To set the highlighted item color I am doing this:
The problem is this coloring only is visible when the mouse moves over the item. I want the coloring to apply to all states. Is there something else that must be done for this to appear in non-hover states?
menuItem.FillPrimitive.BackColor = Color.Gray;
The problem is this coloring only is visible when the mouse moves over the item. I want the coloring to apply to all states. Is there something else that must be done for this to appear in non-hover states?