C#窗口程序ComboBox怎么和List<string>数据绑定
2个回答
展开全部
主要利用comboBox1.DisplayMember comboBox1.ValueMember两属性
、绑定数据源情况
Form1_Load()函数添加代码:
ArrayList lst = new ArrayList(); //列表
lst.Add(new Vendor("a_geshi03", "20")); //列表增加象
lst.Add(new Vendor("a_geshi04", "30"));
comboBox1.Items.Clear(); //清空combobox
comboBox1.DataSource = lst; //lst列表绑定combobx
comboBox1.DisplayMember ="Strtemname";// 指定显示数据项
comboBox1.ValueMember = "Strindex"; //指定comboBox1.SelectedValue返数据项
3.其Vendor自定义类:
class Vendor
{
private string strtemname;
private string strindex;
public Vendor(string itemname,string index)
{
this.strtemname = itemname;
this.strindex = index;
}
public string Strtemname
{
get { return strtemname; }
set { strtemname = value; }
}
public string Strindex
{
get { return strindex; }
set { strindex = value; }
}
}
二、绑定数据源情况:
comboBox.DataSource = list;//绑定表
comboBox.DisplayMember = "name";//显示数据
comboBox.ValueMember = "id";//台数据
或者直接界面手绑定即:
、绑定数据源情况
Form1_Load()函数添加代码:
ArrayList lst = new ArrayList(); //列表
lst.Add(new Vendor("a_geshi03", "20")); //列表增加象
lst.Add(new Vendor("a_geshi04", "30"));
comboBox1.Items.Clear(); //清空combobox
comboBox1.DataSource = lst; //lst列表绑定combobx
comboBox1.DisplayMember ="Strtemname";// 指定显示数据项
comboBox1.ValueMember = "Strindex"; //指定comboBox1.SelectedValue返数据项
3.其Vendor自定义类:
class Vendor
{
private string strtemname;
private string strindex;
public Vendor(string itemname,string index)
{
this.strtemname = itemname;
this.strindex = index;
}
public string Strtemname
{
get { return strtemname; }
set { strtemname = value; }
}
public string Strindex
{
get { return strindex; }
set { strindex = value; }
}
}
二、绑定数据源情况:
comboBox.DataSource = list;//绑定表
comboBox.DisplayMember = "name";//显示数据
comboBox.ValueMember = "id";//台数据
或者直接界面手绑定即:
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
// 定义数据类型
class demoInfo
{
public int ID{get;set;}
public stringi Value{set;get;}
}
// 绑定数据combobox
List lst = new List();
lst.Add(new demoInfo(){ID=1,Value="阿杜"});
comboBox.ValueMember = "Value";
comboBox.DisplayMember = "ID";
comboBox.DataSource = lstSearchFilesInfo;
// combobox注册SelectedIndexChanged事件
comboBox_SelectedIndexChanged 函数:
if(comboBox.SelectedValue!=null)
{
textbox.text = comboBox.SelectedValue.tostring();
}
class demoInfo
{
public int ID{get;set;}
public stringi Value{set;get;}
}
// 绑定数据combobox
List lst = new List();
lst.Add(new demoInfo(){ID=1,Value="阿杜"});
comboBox.ValueMember = "Value";
comboBox.DisplayMember = "ID";
comboBox.DataSource = lstSearchFilesInfo;
// combobox注册SelectedIndexChanged事件
comboBox_SelectedIndexChanged 函数:
if(comboBox.SelectedValue!=null)
{
textbox.text = comboBox.SelectedValue.tostring();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询