本文介绍了如何填充ToolStripComboBox?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我发现它很难将数据绑定到 ToolStripComboBox
.似乎它没有 ValueMember
和 DisplayMember
属性.
I find it hard binding data to a ToolStripComboBox
. It seems it doesn't have the ValueMember
and DisplayMember
properties.
如何绑定它?
推荐答案
要访问toolstripcombobox中包装好的组合框并访问其 ValueMember/DisplayMember/DataSource
,您必须编写如下内容:
To access the wrapped combobox in toolstripcombobox and gain access to its ValueMember/DisplayMember/DataSource
you have to write something like this:
ToolStripComboBox1.ComboBox.ValueMember = "YourValueField";
这篇关于如何填充ToolStripComboBox?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!