3

怎么加JLabel出来的GridLayout?我有一个 8x8 网格布局。

Container content = getContentPane();
content.setLayout(new GridLayout(8, 8,2,2));
for (int f = 0; f < btnArr.length; f++){
    for (int s = 0; s < btnArr.length; s++){
        btnArr[f][s] = new JButton();
        btnArr[f][s].addActionListener(this);
        content.add(btnArr[f][s]);
        btnArr[f][s].setBackground(randomColor());
    }
}
4

1 回答 1

9

简单嵌套布局

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

class SimpleNestedLayout {

    public static void main(String[] args) {
        Runnable r = new Runnable() {

            @Override
            public void run() {
                JPanel gui = new JPanel(new BorderLayout(5,5));

                int sz = 4;
                Container content = new JPanel(new GridLayout(sz, 0, 2, 2));
                for (int f=0; f<sz*sz; f++) {
                    content.add(new JButton());
                }
                gui.add(content, BorderLayout.CENTER);

                Container info = new JPanel(
                        new FlowLayout(FlowLayout.CENTER, 50, 5));
                info.add(new JLabel("Flow"));
                info.add(new JLabel("Layout"));
                gui.add(info, BorderLayout.PAGE_START);

                gui.add(new JLabel("Label"), BorderLayout.LINE_END);

                JOptionPane.showMessageDialog(null, gui);
            }
        };
        SwingUtilities.invokeLater(r);
    }
}

笔记

  • 对于 8x8 网格,更改sz为 8。
  • 如果提到的“标签”就像在 GUI 中看到的标签,它可能会出现在最外面的面板BorderLayoutFlow Layout(本身就是一个面板),或者Label出现在最外面的gui面板中的其他两个空缺位置中。
  • ( ) 和info( )面板还可以根据需要接受更多组件。FlowLayoutcontentGridLayout
  • 其他嵌套布局的简单示例。
    1. PlayerGui(31 行)
    2. WestPanel(30 LOC)不是一个很好的例子,因为它extends JPanel不是简单地保留一个实例,而是简短。
    3. AmortizationLayout(53 LOC)作为一个例子特别好,因为它使用标题边框概述了父子布局。
于 2013-01-26T16:30:11.763 回答