あなたは親が成長する際に、それらのNode
sが(彼らはサイズ変更可能と仮定)の成長になりたPriority.ALWAYS
に子供(またはそれらの一部)のvgrow
/hgrow
静的プロパティを設定することができますVBox
/HBox
を使用します。
private static Region createRegion(String color) {
Region region = new Region();
region.setStyle("-fx-background-color: "+color);
return region;
}
@Override
public void start(Stage primaryStage) {
VBox vbox = new VBox(
createRegion("red"),
createRegion("blue"),
createRegion("green")
);
for (Node n : vbox.getChildren()) {
VBox.setVgrow(n, Priority.ALWAYS);
}
Scene scene = new Scene(vbox);
primaryStage.setScene(scene);
primaryStage.show();
}
が子どもの相対的な重みを制御するには、代わりに
GridPane
を使用して
ColumnConstraints
/
RowConstraints
の
percentWidth
/
percentHeight
プロパティを設定することができます。
@Override
public void start(Stage primaryStage) throws IOException {
GridPane root = new GridPane();
root.getColumnConstraints().addAll(DoubleStream.of(30, 2, 68)
.mapToObj(width -> {
ColumnConstraints constraints = new ColumnConstraints();
constraints.setPercentWidth(width);
constraints.setFillWidth(true);
return constraints;
}).toArray(ColumnConstraints[]::new));
RowConstraints rowConstraints = new RowConstraints();
rowConstraints.setVgrow(Priority.ALWAYS);
root.getRowConstraints().add(rowConstraints);
root.addRow(0, Stream.of("red", "green", "blue").map(s -> createRegion(s)).toArray(Node[]::new));
Scene scene = new Scene(root);
primaryStage.setScene(scene);
primaryStage.show();
}
ありがとうございました!これは完璧です – Matteo