public void CerrarForm() { this.Hide(); text_avance.Text = ""; txt_horas.Text = ""; text_descripcion.Text = ""; if (combo_desarrollador.Items.Count > 0) { combo_desarrollador.SelectedIndex = 0; } datepicker_fecha.Value = DateTime.Now; avance = null; proyecto = null; Program.frm_avances.Activate(); }
private void btn_registrar_Click(object sender, EventArgs e) { if (avance == null) { if (CamposSonValidos() == false) { MessageBox.Show("Por favor llene todos los datos correctamente!"); return; } avance = new Avance(); FormToElement(); Program.ctx.Avances.Add(avance); } Program.ctx.SaveChanges(); ActualizarOtrosFormularios(); CerrarForm(); }