本文实例讲述了winform中的ListBox和ComboBox绑定数据用法。分享给大家供大家参考。具体实现方法如下:
本例实现将集合数据绑定到ListBox和ComboBox控件,界面上显示某个属性的内容,代码如下:
代码如下:
//…
//自定义了Person类(有Name,Age,Heigth等属性)
List<Person> persons=new List<Person>();
persons.Add(new Person(“WuMiao”,18,175));
persons.Add(new Person(“YeXinYv”,20,170));
persons.Add(new Person(“WuDong”,18,175));
//ListBox控件实现
lb_PersonsList.DataSource=persons; //指定数据源
lb_PersonList.DisplayMember=”Name”; //界面显示的是人的名字
//ComboBox控件实现 (与ListBox的实现类似)
cmb_PersonList.DataSource=persons;
cmb_PersonList.DisplayMember=”Name”;
除声明外,跑步客文章均为原创,转载请以链接形式标明本文地址
winform中的ListBox和ComboBox绑定数据用法实例
本文地址: http://www.paobuke.com/develop/c-develop/pbk23223.html
相关内容
C# 特殊的string类型详解
C# 设计模式系列教程-状态模式
基于C#代码实现九宫格算法横竖都等于4
C#中的事务用法实例分析
c#操作iis根目录的方法
理解C#中的枚举(简明易懂)
C#遍历子目录的方法
C#中Invoke 和 BeginInvoke 的真正涵义