将类对象列表绑定到ComboBox控件
如果您有一个类对象列表,并希望将其绑定到ComboBox控件,请按照以下步骤操作:
1. 创建您的类
假设有一个表示国家的类:
<code class="language-csharp">public class Country { public string Name { get; set; } public IList<city> Cities { get; set; } public Country() { Cities = new List<city>(); } }</code>
2. 创建BindingSource对象
创建一个BindingSource对象,并将它的DataSource属性设置为您的国家列表。例如:
<code class="language-csharp">var countries = new List<Country> { new Country { Name = "UK" }, new Country { Name = "Australia" }, new Country { Name = "France" } }; var bindingSource1 = new BindingSource(); bindingSource1.DataSource = countries;</code>
3. 设置ComboBox的数据源
将ComboBox的DataSource属性设置为BindingSource对象的DataSource属性。这将在ComboBox和您的列表之间建立连接。
<code class="language-csharp">comboBox1.DataSource = bindingSource1.DataSource;</code>
4. 设置DisplayMember和ValueMember属性
指定要在ComboBox中显示的类属性以及作为所选值存储的属性。使用DisplayMember设置显示属性,使用ValueMember设置值属性:
<code class="language-csharp">comboBox1.DisplayMember = "Name"; comboBox1.ValueMember = "Name";</code>
5. 获取所选项目
要访问所选国家,请将ComboBox的SelectedItem属性强制转换为您的类类型:
<code class="language-csharp">Country country = (Country)comboBox1.SelectedItem;</code>
提示:
以上是如何在 C# 中将类对象列表绑定到组合框?的详细内容。更多信息请关注PHP中文网其他相关文章!