I have following checkbox:
<dxe:CheckEdit Margin="2,0" IsChecked="{Binding SelectedContact.isMajor,Mode=TwoWay,Converter={StaticResource CheckBoxNullToFalse}}">More than 18</dxe:CheckEdit>
This is what i want to achieve: when the user clicks on the check box, i want to call a function but also assign the isMajor field.
The only way i see how to do this is to bind to a command that will perform both operations
Is there a more straightforward way ?
Thanks
John