if(radiobatten1.isChecked )
{//选中时
}
else
{//未选中时
}
RadioButton btnr=new RadioButton ();
if(btnr.Checked)
{
MessageBox.Show("该单选按钮被选中");
}
radiobattenListBox,绑定数据源。
判断RadioButton1.Checked的值是否为True;
If (RadioButton.Checked)
string s = RadioButton.Text;
End If