标签: c# winforms
是否可以将组合框的选定项目设置为不在其下拉列表中的对象?
如果是,那么一定要做什么?
答案 0 :(得分:1)
使用Text属性:
Text
comboBox.Text = "I'm not in the list!";
如果要将项目添加到列表中,请使用Items集合:
Items
comboBox.Items.Add("I was added to the list!");
答案 1 :(得分:0)
有没有理由在生成对象后无法将其添加到列表中?对象是异步生成的吗?
myComboBox.Items.Add(newItem);