Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何属性可以删除样式为 DropDownList 的组合框中的第一个(也是空的)项目?换句话说,我想为组合框选择默认选定项。
我知道我可以使用代码验证所选项目,但我想避免向用户显示消息框。
将该comboBox.SelectedIndex属性设置为 0 以将选择设置为组合框中的第一项。
comboBox.SelectedIndex
您应该设置Textor SelectedIndexorSelectedValue属性。以这种方式,组合框更新正在显示的文本并删除第一个空项目(实际上不是真正的项目)。
Text
SelectedIndex
SelectedValue