How do I group Windows Form radio buttons?

MW. picture MW. · Feb 1, 2010 · Viewed 372.1k times · Source

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.

Answer

Steve Danner picture Steve Danner · Feb 1, 2010

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.