Пример #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            IngresarEmpleadoForm ingresarEmpleadoForm = new IngresarEmpleadoForm(this)
            {
                TopLevel = false, TopMost = true
            };

            this.pContainer.Controls.Add(ingresarEmpleadoForm);
            ingresarEmpleadoForm.Show();
        }
Пример #2
0
 //abrir formulario de registro de empleados y asegurarse que no se abran varias instancias de este
 private void button1_Click(object sender, EventArgs e)
 {
     if ((Application.OpenForms["IngresarEmpleadoForm"] as IngresarEmpleadoForm) == null)
     {
         IngresarEmpleadoForm ingresarEmpleadoForm = new IngresarEmpleadoForm(this)
         {
             TopLevel = false, TopMost = true
         };
         this.pContainer.Controls.Add(ingresarEmpleadoForm);
         ingresarEmpleadoForm.Show();
     }
 }