private void BtRegistrarUsuario_Click(object sender, EventArgs e) { AgregarUsuarioForm registrarUsuario = new AgregarUsuarioForm("User"); this.Hide(); registrarUsuario.ShowDialog(); this.Show(); }
private void materialRaisedButton1_Click(object sender, EventArgs e) { AgregarUsuarioForm prueba = new AgregarUsuarioForm("User"); prueba.MdiParent = this; prueba.WindowState = System.Windows.Forms.FormWindowState.Maximized; prueba.Show(); }
private void agregarToolStripMenuItem3_Click(object sender, EventArgs e) { AgregarUsuarioForm registrar = new AgregarUsuarioForm(userCat); registrar.MdiParent = this; registrar.MinimizeBox = false; registrar.MaximizeBox = false; registrar.ControlBox = false; registrar.Show(); }