Esempio n. 1
0
 public static Simulator GetInstance()
 {
     if(instance == null)
     {
         instance = new Simulator();
     }
     return instance;
 }
Esempio n. 2
0
 private void startSimBtn_Click(object sender, EventArgs e)
 {
     sim = Simulator.GetInstance();
     sim.Show();
     this.TopMost = true;
 }