Completed
Last Updated: 03 Feb 2015 11:46 by ADMIN
ADMIN
Stefan
Created on: 24 Dec 2014 12:04
Category:
Type: Bug Report
0
FIX. RadDropDownList - the description text is not clearly visible for the selected item with the VisualStudio2012Dark theme

		
Attached Files:
1 comment
ADMIN
Stefan
Posted on: 24 Dec 2014 12:06
Workaround:
void radDropDownList1_VisualListItemFormatting(object sender, VisualItemFormattingEventArgs args)
        {
            if (args.VisualItem.Selected && radDropDownList1.ThemeName == "VisualStudio2012Dark")
            {
                args.VisualItem.BackColor = Color.DarkBlue;
            }
            else
            {
                args.VisualItem.ResetValue(LightVisualElement.BackColorProperty, ValueResetFlags.Local);
            }
        }