如何将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关联