예제 #1
0
        private void CountryEditorButton_Click(object sender, EventArgs e)
        {
            CountryEditorForm countryForm = new CountryEditorForm();

            countryForm.baseGame = baseGame;
            countryForm.modFile  = modFile;
            countryForm.Show(this);
        }
예제 #2
0
        void showCountryForm()
        {
            CountryEditorForm countriesForm = new CountryEditorForm();

            countriesForm.baseGame = baseGame;
            countriesForm.modFile  = modFile;
            countriesForm.Show(this);
            //NewCountryForm newCountryForm = new NewCountryForm();
            //newCountryForm.Show(countriesForm);
            Hide();
        }