Bienvenido: ( Identificarse | Registrarse )      
Foros de Trucos Windows
 
Closed TopicStart new topicStart Poll

Outline · [ Estándar ] · Lineal+

> situar ventana en el Screen, en Java

cyberfranko
post Jan 18 2007, 05:29 AM
Publicado: #1


G*FranKo
***

Grupo: Members
Mensajes: 84
Registrado: 15-November 06
Miembro nº: 186.314



Hola, espero me ayuden.... al ejecutar mi archivo .jar de java pues este se situa en la superior izquierda de mi screen, deseava saver si es posible disponer de una manera para ke esta se situe en el luegar ke se le indike (ya sea en el centro, inferios izquierda, etc...) GRACIAS biggrin20jy.gif


User is offlineProfile CardPM
Go to the top of the page
+Quote Post
rob1104
post Jan 18 2007, 10:57 PM
Publicado: #2


Xbox Live... The best thing ever happened around videogames
Group Icon

Grupo: Moderadores
Mensajes: 1.665
Registrado: 7-March 05
Desde: Matamoros, Tamaulipas, Mexico
Miembro nº: 93.342



Hola cyberfranko, hay varias formas de lograrlo; mira para centrar un JFrame debes ajustar su propiedad setLocationRelativeTo a null, he qui un ejemplo
CODE
import javax.swing.*;
public class ventanaCentrada extends JFrame
{
public ventanaCentrada()
{
 setTitle("Estoy centrada");
 setSize(320,180);
 setLocationRelativeTo(null);
 setDefaultCloseOperation(EXIT_ON_CLOSE);
 setVisible(true);
}
public static void main(String args[])
{
 ventanaCentrada ejemplo=new ventanaCentrada();
}
}


Para que escojas tu manualmente la ubicacion puedes usar el metodo setBounds del JFrame
CODE
setBounds(Izquierda,Arriba,Ancho,Alto);

Ejemplo:
CODE

import javax.swing.*;
public class ventanaCentrada extends JFrame
{
public ventanaCentrada()
{
 setTitle("Estoy en la esquina zuperior izquierda");
 setBounds(0,0,500,100);
 setDefaultCloseOperation(EXIT_ON_CLOSE);
 setVisible(true);
}
public static void main(String args[])
{
 ventanaCentrada ejemplo=new ventanaCentrada();
}
}


Saludos smile.gif


User is offlineProfile CardPM
Go to the top of the page
+Quote Post
cyberfranko
post Jan 20 2007, 11:33 PM
Publicado: #3


G*FranKo
***

Grupo: Members
Mensajes: 84
Registrado: 15-November 06
Miembro nº: 186.314



Gracias Man, MaS ClaRo ImPoSiBlE...... clap.gif biggrin20jy.gif Tan SenCillo Q STaVa


User is offlineProfile CardPM
Go to the top of the page
+Quote Post

 
Closed TopicTopic OptionsStart new topic

Collapse

> Topicos similares

Blue Screen Of Death DaNG 68 1 Sep 27 2008, 12:33 PM
By: jbex
ventana q me pide validar windows xp samilox 443 2 Sep 20 2008, 10:39 AM
By: Kbite
Ventana "Aplicattion error" al hacer click dere ... xmanverine 237 6 Aug 20 2008, 06:05 AM
By: vitrox2007
Ventana gris al inicar Windows ALI G 235 9 Aug 19 2008, 09:45 PM
By: ALI G
Sale una ventana al cerrar i explorer edykules 63 1 Aug 16 2008, 11:01 AM
By: Kbite