我如何为主 fxml 中的第二个 fxml 自动调整大小
how i can take autosize for the second fxml inside main fxml
如何在第一个 fxml 中加载第二个 fxml
除了每个控制器中的 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
如何在第一个 fxml 中加载第二个 fxml
除了每个控制器中的 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