private void CountryEditorButton_Click(object sender, EventArgs e) { CountryEditorForm countryForm = new CountryEditorForm(); countryForm.baseGame = baseGame; countryForm.modFile = modFile; countryForm.Show(this); }
void showCountryForm() { CountryEditorForm countriesForm = new CountryEditorForm(); countriesForm.baseGame = baseGame; countriesForm.modFile = modFile; countriesForm.Show(this); //NewCountryForm newCountryForm = new NewCountryForm(); //newCountryForm.Show(countriesForm); Hide(); }