Ejemplo n.º 1
0
        private void buttonSave_Click(object sender, System.EventArgs e)
        {
            CityForm city = new CityForm(_district.Id);

            city.ShowDialog();
            textBoxCity.Text = city.City;
        }
Ejemplo n.º 2
0
        private void buttonSave_Click(object sender, System.EventArgs e)
        {
            CityForm city = new CityForm(_province, _district);

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