1

I read a question on the subject here, but the provided answer doesn't fit my case, and like said, "is a bit overkill".
I have a bunch of radio buttons in a table layout panel on a form, and .NET has decided to manage them on its own, unchecking the others when one is checked, and I don't want that.
From what I understood this is due to .NET grouping controls inside of a same container.

How do I disable that ?
Thanks.

Community
  • 1
  • 1
deqyra
  • 734
  • 1
  • 7
  • 23

1 Answers1

1

Set the AutoCheck property to false on each RadioButton and then handle check/uncheck logic in the Click event.

Loathing
  • 5,109
  • 3
  • 24
  • 35
  • That was that simple... Ok. Thank you ! – deqyra May 19 '15 at 13:44
  • 1
    NOTE : "handle check/uncheck logic in the Click event" means that you need to manually update the display and the check state of the radio button. – deqyra May 19 '15 at 13:45