Example #1
0
        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;
        }
Example #2
0
 internal ConfigCountryAction(string countryShortName, CountryConfig.CountryRow countryRow)
 {
     _countryShortName = countryShortName;
     _countryRow       = countryRow;
 }