Skip to content
Snippets Groups Projects
Commit f6e8faf6 authored by Lucas Garrido's avatar Lucas Garrido
Browse files

No se que paso

parent 3e9ba91e
No related branches found
No related tags found
No related merge requests found
......@@ -416,6 +416,12 @@
<Properties>
<Property name="horizontalAlignment" type="int" value="0"/>
<Property name="text" type="java.lang.String" value="Aqui va la imagen de fondo"/>
<Property name="maximumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[1080, 720]"/>
</Property>
<Property name="minimumSize" type="java.awt.Dimension" editor="org.netbeans.beaninfo.editors.DimensionEditor">
<Dimension value="[600, 800]"/>
</Property>
</Properties>
<Constraints>
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
......
......@@ -4,6 +4,7 @@ import Presentacion.Categoria.*;
import Presentacion.ListaDeReproduccion.*;
import Presentacion.Usuario.*;
import Presentacion.Video.*;
import java.awt.Dimension;
import java.awt.Image;
import java.awt.Toolkit;
import javax.swing.ImageIcon;
......@@ -15,6 +16,11 @@ public class frmPrincipal extends javax.swing.JFrame {
initComponents();
this.setLocationRelativeTo(null);
this.setSize(new Dimension(100, 100));
//Línea 2
this.setMinimumSize(new Dimension(50, 50));
DatosDePrueba.cargarDatos();
/*
menuUsuario.setEnabled(false);
......@@ -118,6 +124,8 @@ public class frmPrincipal extends javax.swing.JFrame {
lbFondo.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
lbFondo.setText("Aqui va la imagen de fondo");
lbFondo.setMaximumSize(new java.awt.Dimension(1080, 720));
lbFondo.setMinimumSize(new java.awt.Dimension(600, 800));
jDesktopPane1.add(lbFondo, new org.netbeans.lib.awtextra.AbsoluteConstraints(0, 0, 990, 580));
getContentPane().add(jDesktopPane1, new org.netbeans.lib.awtextra.AbsoluteConstraints(0, 0, 990, 580));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment