gpt4 book ai didi

java - 如何将 javaFX 与 java FXML 结合使用

转载 作者:行者123 更新时间:2023-12-02 06:18:42 25 4
gpt4 key购买 nike

是否可以在同一个项目中组合 JavaFX 和 JavaFXML 屏幕,以便我可以从使用场景生成器构建的屏幕进行切换,而下一个屏幕是使用 JavaFX 构建的?

最佳答案

请注意,以编程方式调用屏幕或场景构建器生成的 fxml 文件没有区别。您可以从代码或 fxml 启动第一个窗口,然后从代码或 fxml 调用另一个屏幕。

示例:Main.java

package sample;  

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class Main extends Application {

@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("sample.fxml"));
primaryStage.setTitle("Hello World");

Scene scene = new Scene(root, 300, 250);

primaryStage.setScene(scene);
primaryStage.show();
}


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

Controller.java

package sample;  

import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class Controller {

@FXML
private javafx.scene.control.Button myButton;

@FXML
private void testButton(ActionEvent e) {
System.out.println("Button Clicked...");
Stage currentStage = (Stage) myButton.getScene().getWindow();
Group root = new Group();

Stage stage = new Stage();
stage.setTitle("My New Stage Title");
stage.setScene(new Scene(root, 450, 450));
stage.show();

// Hide this current window (if this is what you want)
currentStage.close();
}
}

样本.fxml

<?xml version="1.0" encoding="UTF-8"?>  

<?import javafx.scene.control.Button?>
<?import javafx.scene.layout.AnchorPane?>

<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Controller">
<children>
<Button fx:id="myButton" layoutX="57.0" layoutY="59.0" mnemonicParsing="false" onAction="#testButton" text="Click me!" />
</children>
</AnchorPane>

代码说明:使用按钮启动初始窗口,在 Controller 类中声明按钮 id 和 onAction 以启动另一个窗口,并关闭初始窗口。如果您不想隐藏初始屏幕,只需将其注释掉即可。

关于java - 如何将 javaFX 与 java FXML 结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55848948/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com