c# 把list<t>数据源 绑定到下拉列表可以实现吗!!
2个回答
展开全部
可以实现的。
简单点的,
List<itemEx> list = new List<itemEx>();
list.Add(new itemEx("显示内容1", 0));
list.Add(new itemEx("显示内容2", 1));
list.Add(new itemEx("显示内容3", 2));
list.Add(new itemEx("显示内容4", 3));
comboBox1.DisplayMember = "Name";
comboBox1.ValueMember = "Tag";
comboBox1.DataSource = list;
public class itemEx{
public string Name {get;set;}
public object Tag{get;set;}
public itemEx(string s, object o) {
Name = s;
Tag = o;
}
}
大概就是这么个意思,我一般都是这样写的 ^0^
简单点的,
List<itemEx> list = new List<itemEx>();
list.Add(new itemEx("显示内容1", 0));
list.Add(new itemEx("显示内容2", 1));
list.Add(new itemEx("显示内容3", 2));
list.Add(new itemEx("显示内容4", 3));
comboBox1.DisplayMember = "Name";
comboBox1.ValueMember = "Tag";
comboBox1.DataSource = list;
public class itemEx{
public string Name {get;set;}
public object Tag{get;set;}
public itemEx(string s, object o) {
Name = s;
Tag = o;
}
}
大概就是这么个意思,我一般都是这样写的 ^0^
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//绑定到DropDownList,设定Text和value显示
public static void BindDropDownList(string SqlString, DropDownList MyDDL, string TextStr, string ValueStr)
{
SqlDataReader MyReader = GetDataReader(SqlString);
MyDDL.Items.Clear();
while (MyReader.Read())
{
ListItem MyItem = new ListItem();
MyItem.Text = MyReader[TextStr].ToString();
MyItem.Value = MyReader[ValueStr].ToString();
MyDDL.Items.Add(MyItem);
}
MyReader.Close();
}
public static void BindDropDownList(string SqlString, DropDownList MyDDL, string TextStr, string ValueStr)
{
SqlDataReader MyReader = GetDataReader(SqlString);
MyDDL.Items.Clear();
while (MyReader.Read())
{
ListItem MyItem = new ListItem();
MyItem.Text = MyReader[TextStr].ToString();
MyItem.Value = MyReader[ValueStr].ToString();
MyDDL.Items.Add(MyItem);
}
MyReader.Close();
}
更多追问追答
追问
现在又出现个问题
为什么我在后台获取值 RF_Ded.Text的值为空了
追答
我相信你了解下面三个DropDownList的属性。你就对这个控件不那么陌生了
this.DropDownList1.SelectedItem.Value.ToString() 可以获取DropDownList1当前选中项的value值
this.DropDownList1.SelectedItem.Text.ToString() 可以获取DropDownList1当前选中项的Text值
this.DropDownList1.SelectedValue 可以设置DropDownList1的选中项。以value值确定
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询