我要在C#中设置多个单选按钮,怎样用代码来判断,某个单选按钮是否被选中?
展开全部
如果你是用的RadioButton那么需要一个一个判断:
if (RadioButton1.Checked)
Label1.Text = "Male";
if (RadioButton2.Checked)
Label1.Text = "Female";
建议用RadioButtonList,判断很方便:
Label2.Text = RadioButtonList1.SelectedValue;
if (RadioButton1.Checked)
Label1.Text = "Male";
if (RadioButton2.Checked)
Label1.Text = "Female";
建议用RadioButtonList,判断很方便:
Label2.Text = RadioButtonList1.SelectedValue;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if(radButton1.Checked)
//这个按钮就被选中了
else if (radButton2.Checked)
//2号被选中了
//这个按钮就被选中了
else if (radButton2.Checked)
//2号被选中了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你要看看你的那个是定义在哪个事件里面。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询