我可以使用JavaFX向程序中添加更多开始菜单项吗?

时间:2017-09-27 16:45:50

标签: java windows gradle javafx javafx-gradle-plugin

我使用JavaFX Gradle plugin构建我的JavaFX应用程序。是否可以在完成的安装程序中添加多个开始菜单项?

1 个答案:

答案 0 :(得分:10)

在回答了other question regarding additional native launchers之后,我检查了JDK的来源,看看有什么需要。

任何启用了" needMenu" -property的启动器都会反映在开始菜单中的某些菜单项中。只需在构建文件中添加以下内容:

jfx {
    // ... normal configuration ...

    // your secondary entry points, each will inherit the configuration, unless you specify otherwise here
    secondaryLaunchers = [
        [
            appName: 'somethingDifferent2',
            mainClass: 'your.different.entrypoint.MainApp',
            // the following is required for an start-menu entry
            needMenu: true
        ]
    ]
}

免责声明:我是该JavaFX-Gradle插件的创建者