我如何才能在主fxml中为第二个fxml进行自动调整大小

时间:2018-09-06 09:31:42

标签: javafx javafx-8 javafx-2

如何在第一个fxml中加载第二个fxml

1 个答案:

答案 0 :(得分:1)

除了每个控制器中的Main AnchorPane以外,您最多

fxml内的这段代码

  <AnchorPane minHeight="-Infinity" minWidth="-Infinity" prefHeight="520" prefWidth="782.0" style="-fx-background-color: White; -fx-background-radius: 15px; -fx-border-radius: 12px;" AnchorPane.bottomAnchor="1.0" AnchorPane.leftAnchor="1.0" AnchorPane.rightAnchor="1.0" AnchorPane.topAnchor="1.0" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Controller.CreateitemController">

然后在主屏幕中显示,但是此代码用于在单击按钮时打开主屏幕中的第二个屏幕

@FXML
    public void groupshow(ActionEvent event) throws IOException {

        Parent root = FXMLLoader.load(getClass().getResource("/FX/creategroupshow.fxml"));
        setting_page.getChildren().setAll(root);

    }

enter image description here