DevExpress在运行时向ComboBox添加项目

时间:2014-12-31 02:48:55

标签: vb.net combobox devexpress

我最近开始使用DevExpress Comboboxes和其他UI组件。但是我正在努力在符文时添加项目到ComboBoxes。默认的Visual Basics的ComboBox只使用Items.Add代码工作......但DevExpresses接缝要复杂得多,我花了最后一小时试图找出如何在运行期间向Combobox添加项目。现在这是我的最终选择。

有没有人知道如何做到这一点?为了更清楚一点,我正在尝试这样的事情:

If combobox1.SelectectItem = "Item1" Then 
    Combobox2.items.add("Added Item String")
end if 

只需使用语法,DevExpress类就会“理解”。

1 个答案:

答案 0 :(得分:0)

所有DevExpress个编辑者都拥有SomeEditor.Properties属性,其中包含特定于编辑者的设置。因此,您可以从Items属性获取comboBox.Properties.Items集合:

If combobox1.SelectectItem.ToString = "Item1" Then 
    Combobox2.Properties.Items.Add("Added Item String")
End If