这是我编写的代码,但没有为 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;
}