首页 >后端开发 >C++ >如何在 C# 中将自定义类列表绑定到组合框?

如何在 C# 中将自定义类列表绑定到组合框?

DDD
DDD原创
2025-01-13 09:29:43606浏览

How to Bind a Custom Class List to a ComboBox in C#?

使用绑定列表操作ComboBox

本文介绍如何将自定义类对象的列表绑定到ComboBox控件。以下是解决方案:

首先,修改Country类,添加一个构造函数初始化NameCities属性:

<code class="language-csharp">public class Country
{
    public string Name { get; set; }
    public IList<City> Cities { get; set; }

    public Country(string name)
    {
        Name = name;
        Cities = new List<City>();
    }
}</code>

创建Country对象列表:

<code class="language-csharp">List<Country> countries = new List<Country>
{
    new Country("英国"),
    new Country("澳大利亚"),
    new Country("法国")
};</code>

初始化BindingSource并将其DataSource设置为国家列表:

<code class="language-csharp">var bindingSource1 = new BindingSource();
bindingSource1.DataSource = countries;</code>

将ComboBox的DataSource绑定到BindingSourceDataSource

<code class="language-csharp">comboBox1.DataSource = bindingSource1.DataSource;</code>

设置ComboBox的DisplayMemberValueMemberCountry类的相应属性:

<code class="language-csharp">comboBox1.DisplayMember = "Name";
comboBox1.ValueMember = "Name";</code>

现在,ComboBox将显示列表中各个国家的名称。要检索选定的国家,可以使用ComboBox的SelectedItem属性:

<code class="language-csharp">Country selectedCountry = (Country)comboBox1.SelectedItem;</code>

注意,对于动态更新,您的数据结构应实现IBindingList接口。建议使用BindingList<T>

请务必将DisplayMember绑定到属性,而不是公共字段,以确保正确的显示和功能。

以上是如何在 C# 中将自定义类列表绑定到组合框?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn