将数据绑定到ToolStripComboBox
本文关键字:ToolStripComboBox 数据绑定 | 更新日期: 2023-09-27 17:53:57
C#
我有ToolStripComboBox
控制。有没有办法将这个ToolStripComboBox
绑定到一个列表?
尝试
List<string> items = new List<string>{"item1", "item2", "item3"};
toolStripComboBox1.ComboBox.DataSource = items;
您可能还需要将ComboBox.BindingContext设置为Form的BindingContext属性:
toolStripComboBox1.ComboBox.BindingContext = this.BindingContext;
如果您发现了这一点,并且希望ComboBox动态运行,则需要确保您设置为数据源的数据结构实现IBindingList,其中一个这样的结构是BindingList(T(