vote up 0 vote down star

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?

flag

73% accept rate

2 Answers

vote up 3 vote down check

Apparently not.

You can group three RadioButtons together using a GroupBox or a Panel as is done here.

link|flag
Weird, I was grouping them in a GroupBox but I thought it wasn't working. Thank you! – Rorschach Jun 19 at 2:18
vote up 1 vote down

The simple fact that several radio buttons are in the same container makes them mutually exclusive, you don't have to code this behavior yourself. Just put them in a Panel or GroupBox as suggested by Matthew

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.