码迷,mamicode.com
首页 > 其他好文 > 详细

流布局, FlowLayout(FlowLayout.TRAILING)

时间:2018-12-08 17:57:24      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:ima   i++   str   bubuko   leading   new   button   中心   out   

package com.company;

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

public class Main extends JFrame {
    Main(){
        setBounds(100,100,300,200);
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        Container c=getContentPane();
        c.setLayout(new FlowLayout(FlowLayout.RIGHT,20,20));//给容器设置流布局
        /*
        FlowLayout.CENTER-----中心对齐;
        FlowLayout.LEADING-----顶对齐;
        FlowLayout.LEFT--------左对齐;
        FlowLayout.RIGHT-------右对齐;
        FlowLayout.TRAILING----排序对齐;
         */
        for (int i=1;i<10;i++){
            c.add(new JButton("按钮"+i));
        }
        setVisible(true);

 

    }

    public static void main(String[] args) {
         new  Main();
	// write your code here
    }
}

 技术分享图片

 

技术分享图片

 

流布局, FlowLayout(FlowLayout.TRAILING)

标签:ima   i++   str   bubuko   leading   new   button   中心   out   

原文地址:https://www.cnblogs.com/llhhcc/p/10088310.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!