Completed
Last Updated: 02 Jun 2014 08:37 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 24 Mar 2014 07:38
Category: CommandBar
Type: Bug Report
0
FIX. RadCommandBar - CommandBarDropDownList does not display in grey color its text box, when the Enabled property is set to false.
Workaround: use the following approach:
private void commandBarDropDownList1_EnabledChanged(object sender, EventArgs e)
{
    if (this.commandBarDropDownList1.Enabled)
    {
        this.commandBarDropDownList1.DropDownListElement.TextBox.BackColor = Color.White;
    }
    else
    {
        this.commandBarDropDownList1.DropDownListElement.TextBox.TextBoxItem.BackColor = Color.FromArgb(210, 210, 210);
    }
}
0 comments