Examples of VentanaPrincipal


Examples of ManejoVentanas.VentanaPrincipal

    public Principal() {
    }
   
    public static void main(String[] args) {
        new VentanaPrincipal();
    }
View Full Code Here

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
Copyright © 2018 www.massapi.com. 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.