如下图这样的下拉框:
image.png
comboBox1.SelectedIndex = number;
通过更改number(数值)来选定下拉框选定item里面的字符串集合
item里面的字符串集合都对应有自己的索引从0开始...
例如 SelectedIndex = 0,就是选定tem里面的第一位字符串
comboBox1.SelectedIndex = 0;
So,SelectedIndex = n,就是选定tem里面的第n+1位字符串
恢复默认值
更改comboBox1.SelectedIndex = -1;即可恢复默认值
comboBox1.SelectedIndex = -1;
网友评论