private void PaisForm_Load_1(object sender, EventArgs e) { try { servicio = new ServicioPais(); lista = servicio.GetPais(); MostraDatosEnGrilla(); } catch (Exception ex) { MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
protected override void OnLoad(EventArgs e) { base.OnLoad(e); ServicioPais servicioPais = new ServicioPais(); var listaPais = servicioPais.GetPais(); var defaultPais = new Pais { PaisId = 0, NombrePais = "<Seleccione Pais>" }; listaPais.Insert(0, defaultPais); PaisMetroComboBox.DataSource = listaPais; PaisMetroComboBox.DisplayMember = "NombrePais"; PaisMetroComboBox.ValueMember = "PaisId"; PaisMetroComboBox.SelectedIndex = 0; if (editorial != null) { EditorialMetroTextBox.Text = editorial.NombreEditorial; PaisMetroComboBox.SelectedValue = editorial.Pais.PaisId; } }