GridLayout中的JLabel

时间:2013-01-26 13:36:13

标签: java swing layout-manager grid-layout

如何从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());
    }
}

1 个答案:

答案 0 :(得分:9)

SimpleNestedLayout

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中看到的标签一样,它可能会在BorderLayout Flow Layout(本身为面板)或{{1} }以及最外面的Label面板中的两个其他空位中的任何一个都出现。
  • guiinfo)&amp; FlowLayoutcontent)小组还可以根据需要接受更多组件。
  • 其他嵌套布局的简单示例。
    1. PlayerGui(31 LOC)
    2. WestPanel(30 LOC)不是伟大的示例,因为它GridLayout而不是简单地保留一个实例,而是简短。
    3. AmortizationLayout(53 LOC)特别好,作为一个例子,它概述了父母&amp;使用标题边框的子布局