Exemplo n.º 1
0
 private void cboCountry_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (!loadingForm)
     {
         ConfigSettings.Country = cboCountry.Text;
         ConfigSettings.GetAreas(ConfigSettings.Country);
         this.cboArea.DataSource         = ConfigSettings.Areas;
         this.cboArea.AutoCompleteMode   = AutoCompleteMode.Suggest;
         this.cboArea.AutoCompleteSource = AutoCompleteSource.ListItems;
     }
 }