ComboBox绑定Dictionary做为数据源

Posted lonelyxmas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ComboBox绑定Dictionary做为数据源相关的知识,希望对你有一定的参考价值。

原文:ComboBox绑定Dictionary做为数据源

ComboBox的DataSource的值可设置为 :实现 IList 接口的对象,如 DataSet 或 Array。默认为 空引用(在 Visual Basic 中为 Nothing)。

但是在实际的项目中可能需要绑定Dictionary作为数据源。此时,将Dictionary<>放到BindingSource中便可以实现间接绑定。

BindingSource 组件有两种用途:

首先,它通过提供一个间接寻址层、当前项管理、更改通知和其他服务简化了窗体中控件到数据的绑定。这是通过将 BindingSource 组件附加到数据源,然后将窗体中的控件绑BindingSource 组件来实现的。与数据的所有进一步交互,包括定位、排序、筛选和更新,都通过调用 BindingSource 组件实现。

第二,BindingSource 组件可以作为一个强类型的数据源。通常,基础数据源的类型通过以下机制之一固定: 使用 Add 方法可将某项添加到 BindingSource 组件中。 将 DataSource 属性设置为一个列表、单个对象或类型。 这两种机制都创建一个强类型列表。BindingSource 支持由其 DataSource 和 DataMember 属性指示的简单数据绑定和复杂数据绑定。

有关BindingSource的更详细信息请参考:http://msdn.microsoft.com/zh-cn/library/system.windows.forms.bindingsource(VS.80).aspx 示例代码如下:

 Dictionary<string, string> dic = new Dictionary<string, string>();
 BindingSource bs = new BindingSource();
 bs.DataSource = dic;
 cbb.DataSource = bs;
 cbb.DisplayMember = "Value";
 cbb.ValueMember = "Key";

以上是关于ComboBox绑定Dictionary做为数据源的主要内容,如果未能解决你的问题,请参考以下文章

WPF的ComboBox数据绑定,使用Dictionary作为数据源

WinForm 中 comboBox控件之数据绑定

在wpf中怎么绑定comboBox的值

Wpf的comboBox怎么绑定数据?

datatable绑定comboBox,在下拉菜单中显示对应数据

c# combobox绑定数据源后默认显示第一个值