Exemplo n.º 1
0
        private void btnModificar_Click(object sender, EventArgs e)
        {
            FrmAltaDestino frmAltaDestino = FrmAltaDestino.GetInstancia();

            frmAltaDestino.Set_Destino(this.destino, true);
            frmAltaDestino.lblDestino.Text = "MODIFICAR DESTINO";
            frmAltaDestino.ShowDialog();
        }
 private void btnAgregarDestino_Click(object sender, EventArgs e)
 {
     frmAltaDestino = FrmAltaDestino.GetInstancia();
     frmAltaDestino.ShowDialog();
     cargarDestino();
 }