我是靠谱客的博主 迷路老虎,最近开发中收集的这篇文章主要介绍我的笔记 网格布局 GridLayout,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

import java.awt.*;
import javax.swing.*;
public class wangge extends JFrame {
    JButton[] an={null,null,null,null,null,null,null,null,null};//添加一个JButton 按钮属性。
    public static void main(String[] args)
    {
        wangge A=new wangge();
    }
    public wangge()
    {
        an[0]=new JButton("话梅");
        an[1]=new JButton("果盘");
        an[2]=new JButton("薯片");
        an[3]=new JButton("披萨");
        an[4]=new JButton("饼干");
        an[5]=new JButton("巧克力");
        an[6]=new JButton("腰果");
        an[7]=new JButton("杏仁");
        an[8]=new JButton("开心果");
        this.setLayout(new GridLayout(3,3,2,2));// 括号里的数字 代表的是 行,列 ,行空 ,列空
        for(int i=0;i<an.length;i++)
        {
            this.add(an[i]);
        }
        this.setTitle("网格布局GridLayout");
        this.setSize(380,200);
        this.setLocation(200,200);
        this.setResizable(false); //Resizable 可变的尺寸 
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.setVisible(true);// Visible 可视的
    }
}

最后

以上就是迷路老虎为你收集整理的我的笔记 网格布局 GridLayout的全部内容,希望文章能够帮你解决我的笔记 网格布局 GridLayout所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部