流式布局与组件按钮

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);
}

}
posted @ 2021-05-16 17:56  逆骨111  阅读(126)  评论(0)    收藏  举报