Is there a way of checking the CheckBox without running the code associated to checking it? Just for visual appearance.
CheckBox
Edit:
private void n
One way would be to detach the event handler, set the IsChecked property, and then reattach it.
IsChecked
myCheckbox.Checked -= myCheckbox_Checked; myCheckbox.IsChecked = true; myCheckbox.Checked += myCheckbox_Checked;