private void buttonSave_Click(object sender, System.EventArgs e) { CityForm city = new CityForm(_district.Id); city.ShowDialog(); textBoxCity.Text = city.City; }
private void buttonSave_Click(object sender, System.EventArgs e) { CityForm city = new CityForm(_province, _district); city.ShowDialog(); textBoxCity.dropDownEnabled = false; textBoxCity.Text = city.City; }