I'm using C#
to develop WindowsForms
application. I have created a form with some panels. Each panel has a RadioButton
. When I click a RadioButton
, and then other one, both are checked.
How could I simulate that all the RadioButtons
are in the same group, so only one can be checked, and the others are unchecked?
Of course, I can control the checkedChanged event for each RadioButton
... but is there any better solution?
Thanks in advance.