Package interfaz

Examples of interfaz.VentanaPrincipal


        //tamaño de la ventana
        this.setSize(400, 225);
        //posicion de la ventana
        this.setLocationRelativeTo(null);
        //ubicar los componentes en el panel.
        this.ventanaPrincipal = new VentanaPrincipal();
        addComponentsToPane(this.getContentPane(), nombre_imagen);
        this.setVisible(true);
       

    }
View Full Code Here

TOP

Related Classes of interfaz.VentanaPrincipal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.