I would like to handled SelectionChanged event in WPF DataGrid element for user interaction/selection only and skip if it\'s due to binding or other set values. Any idea how
hi you can use this in xaml:
and in code behind:
private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (!((ComboBox)sender).IsEditable) return; //Do Stuff; }