private void pictureBox14_Click(object sender, EventArgs e) { CrearParticipante participante = new CrearParticipante(); participante.Show(); panel3.Visible = false; }
private void nuevoTalleristaToolStripMenuItem_Click(object sender, EventArgs e) { CrearParticipante crearParticipante = new CrearParticipante(); crearParticipante.TopLevel = false; crearParticipante.AutoScroll = true; panel1.Controls.Clear(); panel1.Controls.Add(crearParticipante); crearParticipante.Dock = DockStyle.Left; crearParticipante.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; crearParticipante.Show(); }