首先,我是Java的初学者。我正在尝试使用 JavaFX 在 Java 中创建一个 Monopoly 游戏。我在 Gridpane 中绘制了电路板。
我对你们的问题是如何将 GridPane 放在 BorderPane 的中心。Atm 网格窗格占据了整个屏幕。我希望它位于边框的中心,并将其他空间用于菜单和其他窗格。
网格窗格
public class BordView extends GridPane {
private GridPane spelbord = new GridPane();
public BordView() {
initNodes();
layoutNodes();
}
private void initNodes(){
}
private void layoutNodes(){
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);
}
边框窗格
public class GameView extends BorderPane {
BorderPane borderpane = new BorderPane();
public GameView() {
layoutNodes();
}
private void layoutNodes() {
borderpane.setCenter(BordView);
}