Para centrar una ventana a la mitad del monitor que tengamos seria como sigue:
Toolkit pantalla = Toolkit.getDefaultToolkit();
Dimension tamanoPantalla = pantalla.getScreenSize();
int altoPantalla = tamanoPantalla.height;
int anchoPantalla = tamanoPantalla.width;
setSize(anchoPantalla/2,altoPantalla/2);
setLocation(anchoPantalla/4,altoPantalla/4);
setTitle("Agenda Secretario Ejecutivo");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setVisible(true);
No hay comentarios:
Publicar un comentario