Esempio n. 1
0
 private void cboAutomaton_SelectedIndexChanged(object sender, EventArgs e)
 {
     foreach (Automata a in ams.lista)
     {
         if (a.Name == cboAutomaton.Text)
         {
             current = a;
             break;
         }
     }
     if (sd == null)
     {
         sd = new StatesDiagram();
     }
     sd.createStates(current);
 }