C# RadioButton的一些属性介绍

 

    1.C# RadioButton只允许用户从几个选项中选择一个,同一个容器中一次只能选择一个按钮;

    2.C# RadioButton的Appearance属性:根据的以下两种取值控制外观:
    Normal:圆圈+标签,选中后会填充圆圈;
    Button:按钮,类似于开关,选中后按下,未选中时凸起;

    3.C# RadioButton的Checked属性:
    true:选中;
    false: 未选中;
    4.C# RadioButton的CheckedAlign属性:确定圆圈与标签文本的相对位置。

 

  1. private void button1_Click(object sender, EventArgs e)  
  2.         {  
  3.             string checkedRBName = "";  
  4.               
  5.             //取得选中单选按钮的名称  
  6.             if (radioButton1.Checked)  
  7.             {  
  8.                 checkedRBName = radioButton1.Name;  
  9.             }  
  10.             else if (radioButton2.Checked)  
  11.             {  
  12.                 checkedRBName = radioButton2.Name;  
  13. //获得和radioButton按钮对应标签的内容,用的是 radioButton2.Text属性;  
     
  14.             }  
  15.             else 
  16.             {  
  17.                 checkedRBName = radioButton3.Name;  
  18.             }  
  19.             MessageBox.Show(checkedRBName + " was checked.");  
  20.         }  
  21. 原文:http://www.csharpwin.com/csharpspace/3911r2169.shtml