//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);
}