如何从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());
}
}
答案 0 :(得分: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);
}
}
sz
更改为8。BorderLayout
Flow
Layout
(本身为面板)或{{1} }以及最外面的Label
面板中的两个其他空位中的任何一个都出现。 gui
(info
)&amp; FlowLayout
(content
)小组还可以根据需要接受更多组件。PlayerGui
(31 LOC)WestPanel
(30 LOC)不是伟大的示例,因为它GridLayout
而不是简单地保留一个实例,而是简短。AmortizationLayout
(53 LOC)特别好,作为一个例子,它概述了父母&amp;使用标题边框的子布局