如何实现C#中两个COMBOBOX的联动?
例如我想实现两个下拉选单,第一个选单为学校的院系,第二个选单根据第一个选单选择的院系出现相应的专业名称怎么弄?以下是我写的代码,但是第二个下拉选单显示不出来,哪里不对?新...
例如我想实现两个下拉选单,第一个选单为学校的院系,第二个选单根据第一个选单选择的院系出现相应的专业名称怎么弄?
以下是我写的代码,但是第二个下拉选单显示不出来,哪里不对?新手求教。
private void 登陆界面_Load(object sender, EventArgs e)
{
this.comboBox1.Items.Add("理学院");
this.comboBox1.Items.Add("园林学院");
this.comboBox1.Items.Add("经济管理学院");
this.comboBox1.Items.Add("环境学院");
this.comboBox1.Items.Add("工学院");
this.comboBox1.Items.Add("水土保持学院");
}
private void label1_Click(object sender, EventArgs e)
{
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
{
this.comboBox2.Items.Clear();
if (this.comboBox1.Text == "理学院")
{
this.comboBox2.Items.Add("数学与应用数学");
this.comboBox2.Items.Add("电子信息科学");
}
if (this.comboBox1.Text == "园林学院")
{
this.comboBox2.Items.Add("园林");
this.comboBox2.Items.Add("风景园林");
this.comboBox2.Items.Add("游憩");
}
if (this.comboBox1.Text == "经济管理学院")
{
this.comboBox2.Items.Add("会计");
this.comboBox2.Items.Add("物业管理");
this.comboBox2.Items.Add("财务会计");
this.comboBox2.Items.Add("物业管理");
}
if (this.comboBox1.Text == "环境学院")
{
this.comboBox2.Items.Add("环境工程");
this.comboBox2.Items.Add("给排水工程");
}
if (this.comboBox1.Text == "工学院")
{
this.comboBox2.Items.Add("车辆工程");
this.comboBox2.Items.Add("自动化");
this.comboBox2.Items.Add("机械设计与制造");
}
else if (this.comboBox1.Text == "水土保持学院")
{
this.comboBox2.Items.Add("水土保持与荒漠化防治");
this.comboBox2.Items.Add("土木工程");
this.comboBox2.Items.Add("自然地理与资源环境");
}
} 展开
以下是我写的代码,但是第二个下拉选单显示不出来,哪里不对?新手求教。
private void 登陆界面_Load(object sender, EventArgs e)
{
this.comboBox1.Items.Add("理学院");
this.comboBox1.Items.Add("园林学院");
this.comboBox1.Items.Add("经济管理学院");
this.comboBox1.Items.Add("环境学院");
this.comboBox1.Items.Add("工学院");
this.comboBox1.Items.Add("水土保持学院");
}
private void label1_Click(object sender, EventArgs e)
{
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
{
this.comboBox2.Items.Clear();
if (this.comboBox1.Text == "理学院")
{
this.comboBox2.Items.Add("数学与应用数学");
this.comboBox2.Items.Add("电子信息科学");
}
if (this.comboBox1.Text == "园林学院")
{
this.comboBox2.Items.Add("园林");
this.comboBox2.Items.Add("风景园林");
this.comboBox2.Items.Add("游憩");
}
if (this.comboBox1.Text == "经济管理学院")
{
this.comboBox2.Items.Add("会计");
this.comboBox2.Items.Add("物业管理");
this.comboBox2.Items.Add("财务会计");
this.comboBox2.Items.Add("物业管理");
}
if (this.comboBox1.Text == "环境学院")
{
this.comboBox2.Items.Add("环境工程");
this.comboBox2.Items.Add("给排水工程");
}
if (this.comboBox1.Text == "工学院")
{
this.comboBox2.Items.Add("车辆工程");
this.comboBox2.Items.Add("自动化");
this.comboBox2.Items.Add("机械设计与制造");
}
else if (this.comboBox1.Text == "水土保持学院")
{
this.comboBox2.Items.Add("水土保持与荒漠化防治");
this.comboBox2.Items.Add("土木工程");
this.comboBox2.Items.Add("自然地理与资源环境");
}
} 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询