BoxLayout Demo 2 - Java Swing

Java examples for Swing:BoxLayout

Description

BoxLayout Demo 2

Demo Code

import java.awt.LayoutManager;
import javax.swing.BoxLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class BoxLayoutDemo1 {
    public static void main(String[] args) {

        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JPanel panel = new JPanel();
        LayoutManager layout = new BoxLayout(panel, BoxLayout.X_AXIS);
        panel.setLayout(layout);/*from  w w w.j av  a 2 s .  c  o m*/

        panel.add(new JLabel("Ejemplo de BoxLayout de puro Texto "));
        panel.add(new JLabel(" a,"));
        panel.add(new JLabel(" b,"));
        panel.add(new JLabel(" c,"));
        panel.add(new JLabel(" d,"));
        panel.add(new JLabel(" e,"));
        panel.add(new JLabel(" f,"));
        panel.add(new JLabel(" este es el BoxLayout m?s simple."));
        frame.add(panel);

        frame.setSize(700, 300);
        frame.setVisible(true);
    }

}

Related Tutorials