如何将List绑定到ComboBox?我想连接一个BindingSource类对象列表,然后将对象值连接到一个ComboBox。谁能建议怎么做?public class Country{
public string Name { get; set; }
public IList<City> Cities { get; set; }
public Country()
{
Cities = new List<City>();
}}是我的类,我想将其name字段绑定到BindingSource,然后可以与ComboBox关联
3 回答
- 3 回答
- 0 关注
- 1118 浏览
添加回答
举报
0/150
提交
取消