Exemple #1
0
 public menuForm()
 {
     InitializeComponent();
     this.newAirplaneForm        = new newAirplaneForm();
     this.editAirplaneForm       = new editAirplaneForm();
     this.controllerAirplaneForm = new controllerAirplaneForm();
     this.statsForm = new statsForm();
 }
Exemple #2
0
 private void button_newAirplane_Click(object sender, EventArgs e)
 {
     this.newAirplaneForm.Dispose();
     this.newAirplaneForm = new newAirplaneForm(this.game);
     this.newAirplaneForm.Show();
 }