JavaFX FXML场景编辑器使用示例

2021/7/2 11:22:01

本文主要是介绍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);
    }
}

 



这篇关于JavaFX FXML场景编辑器使用示例的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程