private void btnEntrar_Click(object sender, EventArgs e)
        {
            if (!string.IsNullOrWhiteSpace(txtUsuario.Text) && !string.IsNullOrWhiteSpace(txtPass.Text))
            {
                if (txtUsuario.Text == "admin" && txtPass.Text == "administrador")
                {
                    VistaRegistrarse vistaRegistrarse = new VistaRegistrarse();

                    this.Hide();
                    vistaRegistrarse.ShowDialog();
                    this.Close();
                }
            }
        }
        private void btnEntrar_Click(object sender, EventArgs e)
        {
            if(!string.IsNullOrWhiteSpace(txtUsuario.Text) && !string.IsNullOrWhiteSpace(txtPass.Text)){
                if(txtUsuario.Text == "admin" && txtPass.Text == "administrador"){

                    VistaRegistrarse vistaRegistrarse = new VistaRegistrarse();

                    this.Hide();
                    vistaRegistrarse.ShowDialog();
                    this.Close();

                }
            }
        }