public void MostrarFormulario(string opcion) { Form f = new Form(); switch (opcion) { case "R": f = new Sistema.Registrarproducto(); break; case "V": f = new Sistema.ventas(); break; case "C": f = new Sistema.consulta(); break; case "A": f = new Sistema.admin(); break; } panel1.Controls.Clear(); f.Dock = DockStyle.Fill; f.TopLevel = false; panel1.Controls.Add(f); f.Show(); }