There is a checkbox that is already binded to boolean field "IsOutsourcing"
<CheckBox x:Name="chkIsOutsourcing" IsChecked="{Binding IsOutsourcing, Mode=TwoWay}" />
And I need to check it when checked another checkbox.
<CheckBox x:Name="chkIsOption1" IsChecked="{Binding IsOption1, Mode=TwoWay}" />
How ot can be done with XAML?
Can we use here multiple elements to bind?
IsChecked="{Binding IsOutsourcing chkIsOption1, Mode=TwoWay}"
Thanks!