asp.net中用C#编程 radiobutton的问题
有两个单选按钮,我判断哪个按钮被选中可以写成radio1.Checked=true?"A":"B"如果现在有3个单选按钮,也是判断哪个按钮被选中该怎么写啊?...
有两个单选按钮,我判断哪个按钮被选中可以写成radio1.Checked=true?"A":"B"如果现在有3个单选按钮,也是判断哪个按钮被选中该怎么写啊?
展开
3个回答
展开全部
最笨的办法
if (radio1.checked == true)
return "A";
else if (radio2.checked == true)
return "B";
else
return "C";
如果有很多个Radio怎么办?
foreach(control c in container.controls)//container是包含radio的外部控件,control是它的子控件的类型,具体用什么看VS的提示
{
if (c is radio)
{
control thisControl = c as radio;
if (thisControl.checked == true)
return thisControl.text;
}
}
这写的是伪代码,只是一种思路
if (radio1.checked == true)
return "A";
else if (radio2.checked == true)
return "B";
else
return "C";
如果有很多个Radio怎么办?
foreach(control c in container.controls)//container是包含radio的外部控件,control是它的子控件的类型,具体用什么看VS的提示
{
if (c is radio)
{
control thisControl = c as radio;
if (thisControl.checked == true)
return thisControl.text;
}
}
这写的是伪代码,只是一种思路
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询