如何在Java中的GridLayout Panel的特定单元格中添加标签?

时间:2016-04-22 14:51:38

标签: java swing jpanel layout-manager grid-layout

public class TestPane extends JPanel {

    public TestPane() {
        setLayout(new GridBagLayout());

        GridBagConstraints gbc = new GridBagConstraints();

        ImageIcon grassIcon = new ImageIcon("C:\\Users\\Pamvotis\\Desktop\\Project\\img\\icon.png"); 
        JLabel labels = new JLabel();

        for (int row = 0; row < 10; row++) {
            for (int col = 0; col < 6; col++) {
                gbc.gridx = col;
                gbc.gridy = row;

                CellPane cellPane = new CellPane();
                Border border = null;
                if (row < 9) {
                    if (col < 5) {
                        border = new MatteBorder(1, 1, 0, 0, Color.BLACK);
                    } else {
                        border = new MatteBorder(1, 1, 0, 1, Color.BLACK);
                    }
                } else {
                    if (col < 5) {
                        border = new MatteBorder(1, 1, 1, 0, Color.BLACK);
                    } else {
                        border = new MatteBorder(1, 1, 1, 1, Color.BLACK);
                    }
                }
                cellPane.setBorder(border);
                if ((row==0)&&((col==2)||(col==3))) { 
                    cellPane.setBackground(Color.RED);
                } else if ((row==9)&&((col==2)||(col==3))) { 
                    cellPane.setBackground(Color.WHITE);
                    labels = new JLabel(grassIcon);add(labels);
                } else {
                    cellPane.setBackground(Color.GREEN);
                }

                add(cellPane, gbc);
            }
        }
    }

所以我有这个代码,但问题是每次运行程序时,带有图像的标签都放在网格后面的第一行。它发生在其他所有尝试我已经使标签总是出现在网格的第一行或网格后的第一行。任何人都可以帮我这个吗?

1 个答案:

答案 0 :(得分:1)

add(labels);

您正在尝试将标签添加到面板而不指定约束。我相信默认约束将被使用(无论它们是什么)。

如果要控制组件的位置,则需要使用每个add(...)语句指定约束。

编辑:

else if ((row==9)&&((col==2)||(col==3))) {cellPane.setBackground(Color.WHITE);labels = new JLabel(grassIcon);add(labels);}

我猜你想要:

else if ((row==9)&&((col==2)||(col==3))) 
{
    cellPane.setBackground(Color.WHITE);
    labels = new JLabel(grassIcon);
    //add(labels);
    cellPane.add(labels);
}
else 

现在你只需要确保&#34; cellPane&#34;使用布局管理器。