C#ComboBox.SelectedIndex = -1;没有显示空白,它显示第一个记录

时间:2018-02-09 22:28:27

标签: c# winforms combobox

我在Windows窗体中设置了ComboBox.SelectedIndex = -1;组合框。

然而,当我打开表单时,它会加载来自DB的第一个值,而不是空白。

我在其他表单上使用了ComboBox.SelectedIndex = -1;,它在显示空白时正常工作。

它坐在里面:

private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e)
{
    employeeIDComboBox.SelectedIndex = -1;
}

显示:

enter image description here

使用相同的代码处理另一个表单:

private void bindingNavigatorAddNewItem_Click(object sender, EventArgs e)
{
    regComboBox.SelectedIndex = -1;
}

哪些作品显示:

enter image description here

0 个答案:

没有答案