private void comboBox2_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (list.SelectedIndex == -1) { return; } Commands.SetTargetSelector command = new Commands.SetTargetSelector(mRules.Rules.ElementAt(list.SelectedIndex), comboBox2.SelectedIndex.ToString()); mCommandManager.Execute(command); }
private void comboBox2_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (list.SelectedIndex == -1) return; Commands.SetTargetSelector command = new Commands.SetTargetSelector(mRules.Rules.ElementAt(list.SelectedIndex), comboBox2.SelectedIndex.ToString()); mCommandManager.Execute(command); }