流式布局与组件按钮

package cn.rushangw.lesson01;

import java.awt.*;

public class TestFlowLayout {
public static void main(String[] args) {
Frame frame = new Frame();

//组件 按钮
Button button1 = new Button("按钮1");
Button button2 = new Button("按钮2");
Button button3 = new Button("按钮2");

//设置为流式布局
//frame.setLayout(new FlowLayout());
frame.setLayout(new FlowLayout(FlowLayout.LEFT));
//frame.setLayout(new FlowLayout(FlowLayout.RIGHT));

frame.setSize(200,200);

frame.add(button1);
frame.add(button2);
frame.add(button3);

frame.setVisible(true);
}

}
上一篇:AWT_按钮组件


下一篇:2021-05-09