Beispiel #1
0
 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);
 }
Beispiel #2
0
 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);
 }