编程语言
首页 > 编程语言> > JavaFX FXML场景编辑器使用示例

JavaFX FXML场景编辑器使用示例

作者:互联网

最终效果

在这里插入图片描述

场景编辑界面

在这里插入图片描述

maven pom配置resource

注意:每次运行之前,需要maven compile一下,不然fxml的更改不会生效。

<build>
        <finalName>HelloJavaFX</finalName>
        <resources>
            <resource>
                <!-- 这里是放在 src/main/java-->
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.fxml</include>
                    <include>**/fxml/*.fxml</include>
                    <!-- 如果想要弄个包名专门放fxml文件,像上一行这样添加设置 -->
                    <!-- 之后,使用getResource("fxml/xx.fxml")这样子 -->
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
</build>        
代码
package cn.zxl.BaseFXML;

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

/**
 * @Description: //TODO 建立FXML
 * @Author: zhangxueliang
 * @Create: 2021-05-27 11:16
 * @Version: 1.0
 **/
public class Main extends Application {
    @Override
    public void start(Stage primaryStage) throws Exception {
        Parent root = FXMLLoader.load(this.getClass().getResource("sample.fxml"));
        Scene scene = new Scene(root);
        primaryStage.setScene(scene);
        primaryStage.show();
    }

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

 

标签:primaryStage,fxml,javafx,示例,JavaFX,scene,Scene,FXML,import
来源: https://blog.51cto.com/u_7692005/2967924