boxlayoutdemo.java

来自「主要是java书上的一些代码」· Java 代码 · 共 42 行

JAVA
42
字号
//: BoxLayoutDemo.java//package g3ds.joop.ch9;import java.awt.*;import java.awt.event.*;import javax.swing.*;public class BoxLayoutDemo extends JFrame{	private Container c;	private JButton button;			public BoxLayoutDemo(){        super("BoxLayoutDemo");                c = getContentPane();        //设置为BoxLayout,沿Y轴向排列        c.setLayout(new BoxLayout(c, BoxLayout.Y_AXIS));        button = new JButton("Button 1");        //组件采用居中对齐方式        button.setAlignmentX(Component.CENTER_ALIGNMENT);        c.add(button);                button = new JButton("Button 2");        button.setAlignmentX(Component.CENTER_ALIGNMENT);        c.add(button);                button = new JButton("Button 3");        button.setAlignmentX(Component.CENTER_ALIGNMENT);        c.add(button);    }		public static void main(String[] args) {        BoxLayoutDemo frame = new BoxLayoutDemo();                frame.pack();        frame.setVisible(true);        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?