如何实现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("自然地理与资源环境");
}
}
展开
 我来答
最后的仙人
2015-07-10 · TA获得超过1961个赞
知道大有可为答主
回答量:1509
采纳率:0%
帮助的人:1390万
展开全部
把你comboBox2_SelectedIndexChanged函数里面的内容全部移到comboBox1_SelectedIndexChanged里面去
内裤最大功能
2015-07-10 · TA获得超过3105个赞
知道大有可为答主
回答量:3202
采纳率:79%
帮助的人:480万
展开全部
你百度搜索 【c#获取combobox的选中项
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式