I am working on a WinForms app in C#, VS2008.

How do I setup Checkbox's in a Groupbox so that I can reference checkbox states at the group level? For example 7 checkboxes for each day of the week. Then I would like to be able get the state when checking via something like: "result = daysOfWeek.Monday;"

I'm probably missing the obvious somewhere...

thanks

link|improve this question

What exactly are you trying to do? – SLaks Mar 23 '10 at 1:14
feedback

1 Answer

up vote 1 down vote accepted

You can use a CheckedListBox and change the background, border, and selection properties.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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