首先你可以为一个单选按钮设置一个事件处理函数(比如 Function(....),然后在其他的单选按钮的相同时间处理函数设置为同一个事件处理函数,就可以了。
public Form1()
{
InitializeComponent();
radioButton1.Click+=new EventHandler(radioButton_Click);
radioButton2.Click+=new EventHandler(radioButton_Click);
radioButton3.Click += new EventHandler(radioButton_Click);
radioButton4.Click += new EventHandler(radioButton_Click);
}
private void radioButton_Click(object sender, EventArgs e)
{
MessageBox.Show( ((RadioButton)sender).Text.ToString());
}