码迷,mamicode.com
首页 > Windows程序 > 详细

C#实现对DropDowList添加下拉选项的方法

时间:2020-05-23 09:41:56      阅读:59      评论:0      收藏:0      [点我收藏+]

标签:下标   size   选项   选择   指定   center   round   font   title   

C#实现对DropDowList添加下拉选项的方法

1.在指定下标处添加:

DropDownList.Items.Insert(2, new ListItem("Title", "Value"));

2.在已存在的选择下添加:

 DropDownList.Items.Add(new ListItem("Title", "Value"));
 DropDownList.Items.Add("Value");

3.在某个控件里面添加:

 ((DropDownList)wfvMaster.FindControl("DropDownList1")).Items.Add("Value");

C#实现对DropDowList添加下拉选项的方法

标签:下标   size   选项   选择   指定   center   round   font   title   

原文地址:https://www.cnblogs.com/wml-it/p/12941010.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!