I know that WebForms has a RadioButtonList control, but I can’t find one for WinForms. What I need is to have 3 RadioButtons grouped together, so that only 1 can be selected at a time. I’m finding that I have to do this through code, which is a pain. Am I just not seeing RadioButtonList somewhere, or does it really not exist in WinForms?
I know that WebForms has a RadioButtonList control, but I can’t find one for
Share
Apparently not.
You can group three RadioButtons together using a GroupBox or a Panel as is done here.