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.>
All radio buttons inside of a share container are in the same group by default.
Means, if you check one of them - others will be unchecked.
If you want to create independent groups of radio buttons, you must situate them into different containers such as Group Box, or control their Checked state through code behind.