private void btnCancelar_Click(object sender, EventArgs e) { Inicio inicio = new Inicio(); inicio.Show(); this.Hide(); }
private void btnConfirmar_Click(object sender, EventArgs e) { MessageBox.Show("Evento agendado."); ReciboClase recibo = new ReciboClase(); recibo.GuardarRecibo(); Inicio inicio = new Inicio(); inicio.Show(); this.Close(); }
private void btnCancelar_Click(object sender, EventArgs e) { if (deAdmin) { Inicio inicio = new Inicio(); inicio.Show(); this.Dispose(); } else this.Dispose(); }
private void btnCancelar_Click(object sender, EventArgs e) { MenuClase menu = new MenuClase(); EventoClase ev = new EventoClase(); InvitadoClase inv = new InvitadoClase(); cli.BorrarCliente(); ev.BorrarEvento(); inv.BorrarInvitados(); menu.BorrarMenucliente(); Inicio inicio = new Inicio(); inicio.Show(); this.Close(); }