⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 j_gridlayout.java

📁 一个十分好的java基础学习的课件
💻 JAVA
字号:
// ////////////////////////////////////////////////////////
// 
// J_GridLayout.java
// 

// ////////////////////////////////////////////////////////

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

public class J_GridLayout
{
    public static void main( String args[] )
    { 
        JFrame app = new JFrame("GridLayout");

        Container container = app.getContentPane( );
        container.setLayout( new GridLayout(2, 3) ); // grids: 2 rows by 3 columns

        JButton [] b= new JButton[5];
        for (int i= 0; i< 5; i++)
        {
            String s= "Button " + (i+1);
            b[i]= new JButton(s);
            container.add( b[i] );
        } // End of loop: for

        app.setSize( 300, 100 );
        app.setVisible( true );
        app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE );
    } // End of method: main

} // End of class: J_GridLayout

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -