How to make two groups of radio buttons to work independently?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have windows form which contains six radio buttons. I need to split these
radio buttons into two independent groups (4 + 2) so they can operate
independently.
I mean selection in one group doesn't affect other and vice verse.

I know that I can achieve this by using group controls and placing radio
buttons inside group control.

However I don't want to use group controls in my form. So my question: is
there other way to make two groups of radio buttons to work independently,
without usage of group controls?

Thanks
 
If you do not want to use Group control because of not wanting to show its
visible border, you can use Panel control instead.
 
You group radio buttons by drawing them inside a container such as a Panel
control, a GroupBox control, or a form. All radio buttons that are added
directly to a form become one group. To add separate groups, you need to
place them inside panels or group boxes.
 
Back
Top