C#中radioButton控件使用详细方法示例

  using System;

  using System.Windows.Forms;

  namespace RadioButtonExample

  {

  public partial class MainForm : Form

  {

  public MainForm()

  {

  InitializeComponent();

  }

  private void radioButton_CheckedChanged(object sender, EventArgs e)

  {

  // 当选中状态发生改变时触发的事件

  // 在这里执行你希望的操作,比如获取选中的选项文本

  RadioButton radioButton = (RadioButton)sender;

  if (radioButton.Checked)

  {

  string selectedOption = radioButton.Text;

  MessageBox.Show("选中的选项是:" + selectedOption);

  }

  }

  }

  }