这是其中的一段选择:
if(this-> comboBox1-> SelectedIndex==0&&this-> comboBox2-> SelectedIndex==0)
{
this-> comboBox3-> SelectedIndex=1;
this-> comboBox4-> SelectedIndex=0;
this-> comboBox5-> SelectedIndex=0;
}
希望comboBox1-> SelectedIndex==0同时comboBox2-> SelectedIndex==0,两个同时选择,才出现comboBox3-> SelectedIndex=1;comboBox4-> SelectedIndex=0;comboBox5-> SelectedIndex=0;
可是现在只选comboBox2-> SelectedIndex==0,就可以实现。comboBox1-> SelectedIndex==0没有用了。
------解决方案--------------------------------------------------------
另外是不是在combobox2中加上如果没有选择combobox1中的项目,就不可以选择combobox2
-----------------------
这个,你设置combobox2的eneabled的false,让他不可以操作,然后在combobox1的selectindexchange事件中判断combobox1选择了就设置combobox2的eneabled的true