Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have a tableLayoutPanel that contains 22 radiobuttons.i wanna group these radiobuttons by twos.Can i group in codebehind in C#?
Posted

1 solution

Yes: Just put them inside a different control: a GroupBox[^] is a good choice.

RadioButtons automatically act as a group within a single control, so if each set of two is in a separate GroupBox they will affect only each other.
 
Share this answer
 
Comments
Member 10114688 8-Jul-13 4:44am    
except from GroupBox and panel??with code
OriginalGriff 8-Jul-13 4:58am    
"RadioButtons automatically act as a group within a single control"

So if you have more than two of your buttons in it, they all will affect each other.
You must group them in separate controls.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900