Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/06/2009, 04:30
matheo
 
Fecha de Ingreso: mayo-2008
Mensajes: 75
Antigüedad: 16 años, 7 meses
Puntos: 0
Tamaño y posicion de un JButton

Soy principiante en JAVA y resulta que no consigo ni posicionar un boton creado (JButton) en la ventana de la aplicacion, ni darle unas dimensiones. Por mucho que le doy una posición y unas dimensiones, me sale con un tamaño enorme. Este es el código . ¿Donde está el fallo?

Código:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

public class Calculadora{
	public static void main (String [] arg){
		JFrame ventana = new JFrame("Calculadora");
		ventana.setSize(400,600);
		ventana.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		ventana.setVisible(true);
		
		JButton boton0 = new JButton(" 0 ");
         	boton0.setBackground( SystemColor.control );
        	boton0.setBounds(new Rectangle(50,50,100,75));
		ventana.add(boton0);
	}

}