对于Combobox
,我会从System.Collections.ObjectModel.Collection
获取值列表。
我正在分配这样的值:
this.cmbSqlServer.DataSource = this.SqlInstancesCollection;
除非我选择它,否则我不希望在Combobox
的列表中看到第一项。
如果未选择任何内容,如何在Combobox
中显示空白字段?
答案 0 :(得分:2)
如果我理解正确,您只需重置SelectedItem
即可。只需将SelectedIndex
设置为-1。
this.cmbSqlServer.DataSource = this.SqlInstancesCollection;
this.cmbSqlServer.SelectedIndex = -1;