Programación de interfaz JAVA
prueba de clase pública extiende JFrame implementa ActionListener{
JTextField privado jtf;
JButton privado jbPlain;
JButton privado jbBold;
JButton privado jbItalia;
public test(){
super("aplicación de prueba");
init();
this.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
public void init(){
jtf = new JTextField("ceshi");
jbPlain = new JButton("putong");
jbBold = new JButton("cuti");
jbItaly = new JButton("xieti");
Contenedor c = this.getContentPane();
c.setLayout(new GridLayout(2,3));
JPanel jp1 = nuevo JPanel();
jp1.add(jtf);
JPanel jp2 = nuevo JPanel();
jp2.add( jbPlain);
jp2.add(jbBold);