VC# 中 RadioButton 怎么分组?

VC# 中没有 RadioButtonList,RadioButton 也没有类似 Group 的属性,它是怎么实现分组的呢?即如何让多个 RadioButton 最多只有一个处于选中状态。

办法是:将多个 RadioButton 放在一个 GroupBox 或 Panel 中。

你可能感兴趣的