嘿,我有一个网格窗格,对于其中一个节点,我希望它能够占据整行。
但我似乎无法弄清楚如何使用GridPane.setColumnSpan(节点,列跨度);
继承我的代码
grid.getChildren().addAll(animalFields(animal));
grid.setHgap(10);
grid.addRow(2, status, neutered, chipped, vaccinated, reserved);
grid.addRow(3, statusCb,new HBox(neuteredYes, neuteredNo), new HBox(chippedYes, chippedNo), new HBox(vaccinatedYes, vaccinatedNo), new HBox(reservedYes, reservedNo));
grid.addRow(4, new Label("people interested"));
grid.addRow(6, sponsorsTable(((Adoption) animal.getAdoption()).getInterested()));
GridPane.setColumnSpan(sponsorsTable(((Adoption) animal.getAdoption()).getInterested()), 6);
grid.addRow(7, hBox2);
这就是它现在的样子
这就是我希望它看起来像
感谢任何帮助。感谢
答案 0 :(得分:5)
您可以使用GridPane.REMAINING
:
GridPane.setColumnSpan(yourNode, GridPane.REMAINING);