internal ConfigureCountryForm(string countryShortName, CountryConfig.CountryRow countryRow) { InitializeComponent(); _countryRow = countryRow; labelCountry.Text = countryShortName; txtLongName.Text = countryRow.Name; txtShortName.Text = countryRow.ShortName; chkPrivate.Checked = countryRow.Private == DefPar.Value.YES; }
internal ConfigCountryAction(string countryShortName, CountryConfig.CountryRow countryRow) { _countryShortName = countryShortName; _countryRow = countryRow; }