这是我写的代码,但是VBox项的宽度没有设置。我将所有面板的尺寸都设为相同。我需要一些帮助。
提前致谢!

private void initComponents() {
    this.setPadding(new Insets(0,70,0,70));
    this.setSpacing(10);

    red1 = new StackPane();
    red1.setStyle("-fx-background-color:red;");
    red1.setPrefHeight(60);
    red1.setPrefWidth(260);
    this.setVgrow(red1, Priority.ALWAYS);
    this.getChildren().add(red1);
    red2 = new StackPane();
    red2.setStyle("-fx-background-color:red;");
    red2.setPrefHeight(60);
    red2.setPrefWidth(240);
    this.setVgrow(red2, Priority.ALWAYS);
    this.getChildren().add(red2);

}

private StackPane red1;
private StackPane red2;
}

最佳答案

如果可能的话,所有窗格都尝试布局并调整其子级,并且所有窗格都由其父级通过尊重其内容来调整大小。阅读javadoc以获取更多信息。

所有窗格(VBoxStackPaneFlowPanePane等)都打包到javafx.​scene.​layout包中,这意味着这些窗格用于布置其他节点/控件。

您实际尝试获取的形状被打包到javafx.​scene.​shape包中。例如,将它们用作:

red1.getChildren().add(new Rectangle(200, 100, Color.YELLOW));
...
red2.getChildren().add(new Circle(30, Color.BLUE));

08-05 14:35