我需要获取这两个panel中 radiobutton控件的check属性 到主窗体中 如何实现
或者在容器控件选择上是否有其他更好的选择 也可以示下
我需要获取这两个panel中 radiobutton控件的check属性 到主窗体中 如何实现
或者在容器控件选择上是否有其他更好的选择 也可以示下
同一类型的radiobutton的_CheckedChanged 关联同一个处理函数
//.design.cs
this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
this.radioButton3.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
//.cs
string selectedItem = null;
private void radioButton_CheckedChanged(object sender, EventArgs e)
{
RadioButton rb = sender as RadioButton ;
if (rb.Checked)
{
selectedItem = rb.Text;
}
}