I have this control (see picture). I like when check one option in this control, using styles or with triggers other option enable or disable. This is valid or I have other option for do that?
alt text http://img524.imageshack.us/img524/5819/combos.jpg
I have this control (see picture). I like when check one option in this
Share
Hard to say without seeing your XAML, but you could bind each
CheckBox‘sIsCheckedproperty to the same thing:The converter (
IMultiValueConverter) would then determine whether the first value matches the selected value, and return true/false accordingly.