请问,论坛真的没有高手,解决这个向DropDownList1下拉中加系统中的字体和颜色还有字体大小了吗?
请问,论坛真的没有高手,解决这个向DropDownList1下拉中加系统中的字体和颜色还有字体大小了吗? --------------------编程问答-------------------- DropDownList dp = new DropDownList();ListItem tm = new ListItem("aa");
tm.Attributes["style"] = "color:red";
dp.Items.Add(tm);
tm = new ListItem("bb");
tm.Attributes["style"] = "color:blue;font-size:5cm";
dp.Items.Add(tm);
this.Form.Controls.Add(dp);
dp.Style["font-size"] = "15mm";
--------------------编程问答-------------------- 嘻嘻,有道理,谢谢啦呀! --------------------编程问答-------------------- --------------------编程问答-------------------- Click the link to solve your problem.Good luck!
补充:.NET技术 , ASP.NET