gpt4 book ai didi

javafx-2 - 如何使 VBox 填充其父级的大小

转载 作者:行者123 更新时间:2023-12-04 01:38:36 24 4
gpt4 key购买 nike

这是使 VBox 填充其父级的正确方法吗:

    final Group root = new Group();
final Scene scene = new Scene(root, 1000, 800, Color.BLACK);

final VBox c = new VBox();
c.setAlignment(Pos.TOP_CENTER);
c.setSpacing(10);
c.setFillWidth(true);
c.getChildren().add(...);
c.getChildren().add(...);
c.getChildren().add(...);

c.prefWidthProperty().bind(scene.widthProperty());
c.prefHeightProperty().bind(scene.heightProperty());

root.getChildren().add(c);

stage.setTitle("blah"); //$NON-NLS-1$
stage.setScene(scene);
stage.show();

最佳答案

您可以在不使用绑定(bind)的情况下实现相同的功能,只使用 BorderPane而不是组

final BorderPane root = new BorderPane();
// construct your VBox
root.setCenter(vbox);

关于javafx-2 - 如何使 VBox 填充其父级的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9311596/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com