C#窗口程序ComboBox怎么和List<string>数据绑定
发布网友
发布时间:2023-09-17 07:14
我来回答
共2个回答
热心网友
时间:2024-12-03 03:12
主要利用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";//台数据
或者直接界面手绑定即:
热心网友
时间:2024-12-03 03:13
// 定义数据类型
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();
}