首先,我是Java的初学者。我正在尝试使用JavaFX在Java中创建一个Monopoly游戏。我在Gridpane中绘制了电路板。
public class BordView extends GridPane {
public BordView() {
RowConstraints rowsEdge = new RowConstraints();
rowsEdge.setPercentHeight(14);
RowConstraints rowsMid = new RowConstraints();
rowsMid.setPercentHeight(8);
ColumnConstraints colEdge = new ColumnConstraints();
colEdge.setPercentWidth(14);
ColumnConstraints colMid = new ColumnConstraints();
colMid.setPercentWidth(8);
this.getColumnConstraints().addAll(colEdge, colMid,
colMid, colMid, colMid, colMid, colMid, colMid, colMid, colMid, colEdge);
this.getRowConstraints().addAll(rowsEdge, rowsMid,
rowsMid, rowsMid, rowsMid, rowsMid, rowsMid, rowsMid, rowsMid, rowsMid, rowsEdge);
this.setGridLinesVisible(true);
}
现在我的问题是:我如何为这些细胞设置名称,金钱价值和颜色?有没有办法获得坐标或细胞的某些东西。如果是这样,我可以用循环填充它们。
先谢谢, 森