In WPF data binding, I can bind the IsChecked property to some data, e.g. user setting, but I need to handle \"CheckChanged\" event, I know I can seperately handle <
As a checkbox click = a checkbox change the following will also work:
private void CheckBox_Click(object sender, RoutedEventArgs e) { // ... do some stuff }
It has the additional advantage of working when IsThreeState="True" whereas just handling Checked and Unchecked does not.
IsThreeState="True"