C#怎么按下面的用法使用radioButton按钮?
我有14个radioButton按钮,有一个string变量a,如果radioButton1.checked==true,那么a="a";如果radilButton2.c...
我有14个radioButton按钮,有一个string变量a,如果radioButton1.checked==true,那么a = "a";如果radilButton2.checkde==true,那么a = "b"……如此类推
这个语句怎么写?我是想用switch语句,因为if语句太麻烦了 展开
这个语句怎么写?我是想用switch语句,因为if语句太麻烦了 展开
3个回答
展开全部
用foreach 遍历你窗体的的所有RadioButton控件
//第一种情况:RadioButton在窗体上
foreach (Control c in this.Controls)
{
RadioButton btn = c as RadioButton;
if (btn != null)
{
if (btn.Text == "确定")
{
//进行赋值 a="a";
}
//第二种情况:RadioButton在panel等容器里面
Panel p = c as Panel;
if (p != null)
{
foreach (Control cc in p.Controls)
{
RadioButton btn = c as RadioButton;
if (c_btn != null)
{
if (c_btn.Text == "确定")
{
//进行赋值 a="a";
}
}
}
}
}
//第一种情况:RadioButton在窗体上
foreach (Control c in this.Controls)
{
RadioButton btn = c as RadioButton;
if (btn != null)
{
if (btn.Text == "确定")
{
//进行赋值 a="a";
}
//第二种情况:RadioButton在panel等容器里面
Panel p = c as Panel;
if (p != null)
{
foreach (Control cc in p.Controls)
{
RadioButton btn = c as RadioButton;
if (c_btn != null)
{
if (c_btn.Text == "确定")
{
//进行赋值 a="a";
}
}
}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
首先将这些RadioButton全部放到一个Panel中去,然后将每个RadioButton的Tag属性分别设置为a、b、c……。
string a = string.Empty;
foreach (Control c in this.panel1.Controls)
{
RadioButton rb = (RadioButton)c;
if (rb.Checked)
{
a = rb.Tag.ToString();
}
}
string a = string.Empty;
foreach (Control c in this.panel1.Controls)
{
RadioButton rb = (RadioButton)c;
if (rb.Checked)
{
a = rb.Tag.ToString();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2012-07-17
展开全部
string a=radioButton1.checked?"a":"b";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询