本文介绍了绑定列表框列出<对象>的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
什么是绑定一个列表框对象的列表?
What's the simplest way to bind a Listbox to a List of objects?
推荐答案
您正在寻找的<$c$c>DataSource财产 :
You're looking for the DataSource property
:
List<SomeType> someList = ...;
myListBox.DataSource = someList;
您还应设置的DisplayMember
属性,在所需的列表框来显示对象的属性的名称。如果你不这样做,它会调用的ToString()
。
You should also set the DisplayMember
property to the name of a property in the object that you want the listbox to display. If you don't, it will call ToString()
.
这篇关于绑定列表框列出&LT;对象&gt;的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!