Exemplo n.º 1
0
        private void pictureBox14_Click(object sender, EventArgs e)
        {
            CrearParticipante participante = new CrearParticipante();

            participante.Show();
            panel3.Visible = false;
        }
Exemplo n.º 2
0
        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();
        }