コード例 #1
0
ファイル: MainWindow.xaml.cs プロジェクト: blockspacer/isilme
 private void comboBox1_SelectionChanged(object sender, SelectionChangedEventArgs e)
 {
     if (list.SelectedIndex == -1)
     {
         return;
     }
     Commands.SetAction command = new Commands.SetAction(mRules.Rules.ElementAt(list.SelectedIndex), comboBox1.SelectedIndex.ToString());
     mCommandManager.Execute(command);
 }
コード例 #2
0
ファイル: MainWindow.xaml.cs プロジェクト: weimingtom/isilme
 private void comboBox1_SelectionChanged(object sender, SelectionChangedEventArgs e)
 {
     if (list.SelectedIndex == -1)
         return;
     Commands.SetAction command = new Commands.SetAction(mRules.Rules.ElementAt(list.SelectedIndex), comboBox1.SelectedIndex.ToString());
     mCommandManager.Execute(command);
 }