c#中,如何对COMBOBOX的SelectedIndexChanged事件分别执行程序? 10
4个回答
展开全部
也可以这样
先获取当前选定的数据放在零时变量中temp
用temp和1 2 3比较
符合就执行对应的代码
string temp = COMBOBOX.SelectedIndex.tostring();这里忘记了。好像是这样的。抱歉。楼主。你尝试下
if(temp=='1')
{执行程序
}
elsf if(temp=='2')
{执行程序
}
else
{执行程序
}
先获取当前选定的数据放在零时变量中temp
用temp和1 2 3比较
符合就执行对应的代码
string temp = COMBOBOX.SelectedIndex.tostring();这里忘记了。好像是这样的。抱歉。楼主。你尝试下
if(temp=='1')
{执行程序
}
elsf if(temp=='2')
{执行程序
}
else
{执行程序
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在SelectedIndexChanged事件中,分别处理
private void comb_selectedindexchanaged(object sender,eventargs e)
{
combobox comb = sender as combobox;
int value;
if(comb == null || comb.selectvalue == null || !int.TryParse(comb.selectvalue.tostring(),out value))
if(value==1)
{
//sub1
}else if(value==2)
{
//sub2
}
}
private void comb_selectedindexchanaged(object sender,eventargs e)
{
combobox comb = sender as combobox;
int value;
if(comb == null || comb.selectvalue == null || !int.TryParse(comb.selectvalue.tostring(),out value))
if(value==1)
{
//sub1
}else if(value==2)
{
//sub2
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
..if判断呗
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询