foreach (Control c in panel1.Controls)
            {
                if (c is RadioButton)
                {
                    if ((c as RadioButton).Checked)
                    {
                        MessageBox.Show("找到了!");
                        return;
                    }
                }
            }