如何在组合框中显示空白项目?

时间:2014-07-11 09:06:32

标签: c# .net winforms c#-4.0 combobox

对于Combobox,我会从System.Collections.ObjectModel.Collection获取值列表。

我正在分配这样的值:

this.cmbSqlServer.DataSource = this.SqlInstancesCollection;

除非我选择它,否则我不希望在Combobox的列表中看到第一项。

如果未选择任何内容,如何在Combobox中显示空白字段?

1 个答案:

答案 0 :(得分:2)

如果我理解正确,您只需重置SelectedItem即可。只需将SelectedIndex设置为-1。

this.cmbSqlServer.DataSource = this.SqlInstancesCollection;
this.cmbSqlServer.SelectedIndex = -1;