转自原文 C#中ListBox的Items属性是Object对象,如何显示该对象的别名 而真正的则保存在其他的地方
一般是datasource 绑定一个list对象
list 可以是 自定义类型的对象
如:
class Person
{
INT ID;
STRING NAME
}
list<Person> listps = new list<Person>();
dataSource = listps ;
ListBox.DislayMember = "Name";
ListBox.ValueMember = "ID";
Person selPerson = (Person)ListBox.SelectedItem;
int nSelectedID = (int)ListBox.SelectedValue;
//do somethings ……
时间: 2024-10-12 21:43:46