private void btnGestionarProductos_Click(object sender, RoutedEventArgs e)
        {
            GestionarProductos gp = new GestionarProductos(nomUsuario);

            gp.Show();
            this.Close();
        }
        private void btnVolver_Click(object sender, RoutedEventArgs e)
        {
            GestionarProductos gp = new GestionarProductos();

            gp.Show();
            this.Close();
        }