当前位置: 首页 > 知识库问答 >
问题:

如何在VBox JavaFX中调整子AnchorPanes的大小

潘翰藻
2023-03-14

这是我的主界面主界面

我在AnchorPane中有一个VBox (Fxid:datePane)。Vbox是蓝色的。

当单击标签为“Add”的按钮时,一个“second.fxml”文件被加载到VBox (Fxid:datePane)中。

加载的 fxml 文件采用 Vbox 的高度和宽度。

第二个.fxml有一个红色的VBox。

然而,如果我调整屏幕大小,加载的文件不会相应地改变其高度和宽度。调整屏幕大小后

如何确保加载的fxml文件采用其父VBox (Fxid:datePane)的宽度和高度???

这是我的FxmlController.java档案

@FXML
 private Button btnAdd;

 @FXML
 private VBox datePane;

 @FXML
   private VBox vbxsecond;

 @FXML
 private VBox vbxThird;

 @FXML
 private AnchorPane apLoader;

 VBox v;

@Override
public void initialize(URL arg0, ResourceBundle arg1) {
    // TODO Auto-generated method stub
    double w = apLoader.getWidth();
     double h = apLoader.getHeight();
    System.out.println(h);
}

public void setDataPane(Node node) {
    // update VBox with new form(FXML) depends on which button is clicked
    datePane.getChildren().setAll(node);

}

public VBox fadeAnimate(String url) throws IOException {
     v = (VBox) FXMLLoader.load(getClass().getResource(url));
    FadeTransition ft = new FadeTransition(Duration.millis(1500));
    ft.setNode(v);
    ft.setFromValue(0.1);
    ft.setToValue(1);
    ft.setCycleCount(1);
    ft.setAutoReverse(false);
    double w = datePane.getWidth();
     double h = datePane.getHeight();
     v.setPrefHeight(h);
     v.setPrefWidth(w);

    ft.play();
    return v;


}

public void loadPane() throws IOException {

    try{

        setDataPane(fadeAnimate("/resources/second.fxml"));


   }catch(IOException e)
   {
       e.printStackTrace();
   }

}

public void loadPane2 () throws IOException {

    try{

        setDataPane(fadeAnimate("/resources/third.fxml"));


   }catch(IOException e)
   {
       e.printStackTrace();
   }

}

这是我的Main.java档案

@FXML
private VBox vbxsecond;

 @FXML
    private VBox datePane;

@Override
public void start(Stage primaryStage) {
    try {
        //BorderPane root = new BorderPane();
        Parent root = FXMLLoader.load(getClass().getResource("/resources/dashboard.fxml"));
        Scene scene = new Scene(root);
        scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm());
        primaryStage.setScene(scene);
        //primaryStage.setMaximized(true);
        primaryStage.show();            
    } catch(Exception e) {
        e.printStackTrace();
    }
}

public static void main(String[] args) {
    launch(args);
}

这是我的dashboard.fxml文件

AnchorPane minHeight="800.0" prefHeight="800.0" prefWidth="800.0" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.FxmlController">
   <children>
      <SplitPane dividerPositions="0.29797979797979796" layoutX="14.0" layoutY="14.0" prefHeight="800.0" prefWidth="800.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0">
        <items>
          <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="798.0" prefWidth="192.0">
               <children>
                  <Button fx:id="btnAdd" layoutX="22.0" layoutY="122.0" mnemonicParsing="false" onAction="#loadPane" prefHeight="25.0" prefWidth="51.0" text="Add" AnchorPane.leftAnchor="22.0" AnchorPane.topAnchor="122.0" />
                  <Button fx:id="btnadd2" layoutX="57.0" layoutY="281.0" mnemonicParsing="false" onAction="#loadPane2" text="ADD second" />
               </children>
            </AnchorPane>
          <AnchorPane fx:id="apLoader" minHeight="0.0" minWidth="0.0" prefHeight="158.0" prefWidth="814.0">
               <children>
                  <VBox fx:id="datePane" layoutX="10.0" layoutY="23.0" prefHeight="798.0" prefWidth="628.0" style="-fx-background-color: Blue;" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0" />
               </children>
            </AnchorPane>
        </items>
      </SplitPane>
   </children>
</AnchorPane>

这是我的second.fxml档案

<VBox fx:id="vbxsecond" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="800.0" prefWidth="814.0" style="-fx-background-color: Red;" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1">
   <children>
      <Label fx:id="vbxSecond" text="HELLOOO" VBox.vgrow="ALWAYS">
         <font>
            <Font size="96.0" />
         </font>
      </Label>
   </children>
</VBox>

这是我的第三次。fxml文件

<VBox fx:id="vbxThird" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="800.0" prefWidth="814.0" style="-fx-background-color: Pink;" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1">
   <children>
      <Label text="Third HELOO" VBox.vgrow="ALWAYS">
         <font>
            <Font size="85.0" />
         </font>
      </Label>
   </children>
</VBox>

共有1个答案

秦昊穹
2023-03-14

我解决了这个问题。我只需将second.fxml中的VBox和main.fxml中的VBox (Fxid:datePane)的值设置为

AnchorPane.topAnchor="0.0"
AnchorPane.bottomAnchor="0.0" 
AnchorPane.leftAnchor="0.0" 
AnchorPane.rightAnchor="0.0"

它成功了。

 类似资料:
  • 我有下面的代码,它设置了一个特定大小的窗口。它还从外部URL加载图像。

  • 在javaFX中,调整画布大小没有这样的方法,唯一的解决方案是从画布扩展。 “从画布扩展”是使画布可调整大小的唯一解决方案吗?因为这个解决方案只有在我们不想使用FXML的情况下才起作用,如果我们在FXML中声明一个画布,我们如何使它可以调整大小? 这是我的代码:

  • 我一直试图创建一个带有文本的浮动操作按钮,但我无法: 设置按钮中文本的颜色 当我把文本做得太小时,它会变得模糊。 我下面的尝试不起作用。 我可能做错了什么?

  • 问题内容: 您好,我有一个QR码图像,我想调整它的大小,当我尝试使用此代码将其调整为小图像时,我总是得到模糊的图像,并且扫描时QR码不再有效,但是当我使用相同的代码将大小调整为大尺寸图像时,它可以正常工作: 有什么问题,我不清楚,请至少给我一个提示,谢谢。 问题答案: 我使用仿射变换来完成此任务,这是我的代码,希望对您有所帮助

  • 本文向大家介绍如何在PHP中调整图片大小?,包括了如何在PHP中调整图片大小?的使用技巧和注意事项,需要的朋友参考一下 可以使用ImageMagick或GD功能调整图像大小。如果使用了GD的功能,则在对原始数码相机的图像进行采样时,图像文件的大小也会减小。我们将在下面的代码中看到如何使用GD调整图像大小。

  • 问题内容: 我正在使用 Swift 和Parse.com开发适用于iOS的应用程序 我试图让用户从图像选择器中选择一张图片,然后将所选图像的大小调整为200x200像素,然后再上传到我的后端。 Parse.com有一个用于Instagram复制应用程序的教程,名为“ AnyPic”,其中提供了用于调整图像大小的代码,但这是在Objective- C中。 如何在Swift中为所选图片创建200x20