How do I group Windows Form radio buttons?

Viewed 411044

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.

9 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.

Look at placing your radio buttons in a GroupBox.

You should place all the radio buttons of the group inside the same container such as a GroupBox or Panel.

Put radio buttons inside GroupBox (or other panel)

enter image description here

Related