我最近开始在java中使用swing并且我想添加到我的JFrame二维JLabel数组中,问题是,我想在JButtons等相同的JFrame antoher上添加。我的问题是,那个我不知道如何添加这个JLabel数组。
答案 0 :(得分:3)
您可以查看GridLayout。
使用此布局,您可以创建二维布局,您可以在其中添加JLabels
。
类似的东西:
JPanel container = new JPanel();
GridLayout experimentLayout = new GridLayout(0,2);
container.setLayout(experimentLayout);
container.add(new JButton("Label 1,1"));
container.add(new JButton("Label 1,2"));
container.add(new JButton("Label 2,1"));
container.add(new JButton("Label 2,2"));
这将返回如下网格:
+-----------+-----------+
| Label 1,1 | Label 1,2 |
+-----------+-----------+
| Label 2,1 | Label 2,2 |
+-----------+-----------+