C#怎么判断radioButton为选中状态?
怎么判断radioButton为选中状态,比如有三个radioButton,我当第二个被选中时显示出一个textbox,当然之前这个texwbox的Visible是false的,应该怎么写呢?
------解决方案--------------------
radiobutton.checked
private void radioButton2_CheckedChanged(object sender, EventArgs e)
{
if(radioButton2.Checked)
Textbox.Visible=true;
}