I have a data entry form, with its DataCountext bound to a ViewModel object.
The form contains (among other things) a number of CheckBox elements, each bound to a boolean in the ViewModel. These CheckBoxes are grouped into two GroupBoxes.
There are two business requirements I don't know how to handle.
- At least one checkbox in groupbox 1 is selected, or at least one checkbox in groupbox 2 is selected.
- If anything in groupbox 1 is selected, everything in groupbox 2 is unselected, and vice versa.
Anyone have any ideas?