清除类型为:DropDownList的Winform Combobox中的默认空值

8 c# combobox winforms

如何将组合框的默认值作为数组中的第一项.

Mar*_*ath 19

在填充组合框后输入此代码:

comboBox1.SelectedIndex = 0;
Run Code Online (Sandbox Code Playgroud)