我必须使用双数组来制作49个正方形。我只给了我一个矩形。

Rectangle[][] rectArray = new Rectangle[7][7];
//grid is a GridPane containing 49 rectangles.
GridPane grid = new GridPane();
//---- add 49 rectangles to the grid pane, it is recommended to use nested loops
for(int i = 0; i < rectArray.length; i++)
{

    for(int j = 0; j < rectArray.length; j++)
    {
        rectArray[i][j] = new Rectangle(470/7,390/7);
        rectArray[i][j].setStroke(Color.BLACK);
        rectArray[i][j].setFill(Color.WHITE);
        grid.getChildren().add(rectArray[i][j]);
     }

}

最佳答案



GridPane.setConstraints(rectArray[i][j], i, j);


在将矩形添加到网格之前。现在,所有矩形都放在相同的位置(0,0),因此它们重叠并且看起来像一个。

07-28 04:03