0

我有以下方法,可在运行时将项目添加到下拉列表。添加项目很好,但项目出现时没有任何样式

这里是下拉列表

<asp:DropDownList ID="ddlColorPicker" runat="server">                   
</asp:DropDownList>

这里是我调用以在页面加载时添加项目的方法

protected void fillDDLFilesTypesColor()
    {           
        ListItem l1 = new ListItem("بلا لون", "");
        l1.Attributes.Add("style", "color:red");
        l1.Attributes.Add("style", "background-color:#111111");

        ListItem l2 = new ListItem("أحمر", "red");
        l2.Attributes.Add("style", "color:red");
        l2.Attributes.Add("style", "background-color:#111111");            

        ListItem l3 = new ListItem("أزرق", "blue");
        l3.Attributes.Add("style", "color:blue");
        l3.Attributes.Add("style", "background-color:#00FF7F");

        ListItem l4 = new ListItem("أخضر", "green");
        l4.Attributes.Add("style", "color:green");
        l4.Attributes.Add("style", "background-color:#00FF7F");

        ListItem l5 = new ListItem("أصفر", "yellow");
        l5.Attributes.Add("style", "color:yellow");
        l5.Attributes.Add("style", "background-color:#111111");

        ddlColorPicker.Items.Add(l1);
        ddlColorPicker.Items.Add(l2);
        ddlColorPicker.Items.Add(l3);
        ddlColorPicker.Items.Add(l4);
        ddlColorPicker.Items.Add(l5);
    }
4

1 回答 1

1

你正在覆盖你的风格。在一行中完成所有操作,例如:

ListItem l2 = new ListItem("أحمر", "red");
l2.Attributes.Add("style", "background-color:#111111; color:red;");
于 2013-09-29T17:30:53.690 回答