Win Form里面的radiobutton可能和Web里面的不一样,没有group之类的属性。
在使用时直接把同一组的radiobutton放入到一个groupBox或者panel里面,他们就自动为一组了。
没有统一的方法可以一个函数处理所有的Radiobutton事件,需要给每一个RadioButton添加Click,不建议添加CheckedChanged 事件,因为一个radiobutton的check state change 会顺带另外一个radio的check state chang。
this.rbVelocity.Click += new System.EventHandler(this.rbVelocity_Click);