个性化阅读
专注于IT技术分析

Java FlowLayout

FlowLayout用于将组件依次排成一行(在流中)。它是小程序或面板的默认布局。

FlowLayout类的字段

  1. 公共静态最终诠释LEFT
  2. 公共静态最终诠释权
  3. public static final int CENTER
  4. public static final int领先
  5. 公共静态最终诠释

FlowLayout类的构造方法

  1. FlowLayout():创建具有居中对齐和默认5单位的水平和垂直间隙的流布局。
  2. FlowLayout(int align):创建具有给定对齐方式和默认5单位的水平和垂直间隙的流布局。
  3. FlowLayout(int align, int hgap, int vgap):创建具有给定对齐方式和给定水平和垂直间隙的流布局。

FlowLayout类的示例

FlowLayout类
import java.awt.*;
import javax.swing.*;

public class MyFlowLayout{
JFrame f;
MyFlowLayout(){
	f=new JFrame();
	
	JButton b1=new JButton("1");
	JButton b2=new JButton("2");
	JButton b3=new JButton("3");
	JButton b4=new JButton("4");
	JButton b5=new JButton("5");
       		
	f.add(b1);f.add(b2);f.add(b3);f.add(b4);f.add(b5);
	
	f.setLayout(new FlowLayout(FlowLayout.RIGHT));
	//setting flow layout of right alignment

	f.setSize(300, 300);
	f.setVisible(true);
}
public static void main(String[] args) {
	new MyFlowLayout();
}
}
赞(0)
未经允许不得转载:srcmini » Java FlowLayout

评论 抢沙发

评论前必须登录!