Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I group Windows Form radio buttons?

How can I group the radio buttons in Windows Form application (a lot like ASP.NET's radiobuttonlist!)?

So I can switch between each case chosen from the options.

like image 580
MW. Avatar asked Feb 01 '10 16:02

MW.


1 Answers

Put all radio buttons for a group in a container object like a Panel or a GroupBox. That will automatically group them together in Windows Forms.

like image 62
Steve Danner Avatar answered Sep 28 '22 08:09

Steve Danner