还可以用另外一套思路:直接取Controls中的控件。
例如:
void GetRadioButtonControls()
{
    foreach(RadioButton rBtn in this.Controls)
    {
        //放入处理的代码
    }
}