我有以下方法在运行时将项添加到下拉列表中。 它添加的项目很好,但项目没有任何样式
这里是下拉列表
<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);
}
答案 0 :(得分:1)
你正在覆盖你的风格。在一行中完成所有操作,例如:
ListItem l2 = new ListItem("أحمر", "red");
l2.Attributes.Add("style", "background-color:#111111; color:red;");