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

我正在使用JavaFX Gradle插件来构建我的JavaFX应用程序。是否可以将多个“开始”菜单项添加到完成的安装程序中?


答案 1

在回答了有关其他本机启动器的其他问题之后,我检查了JDK的来源,以了解这需要什么。

任何启用了“needMenu”属性的启动器都将反映在开始菜单内的某些菜单条目中。只需将类似如下的内容添加到构建文件中:

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-plugin的创建者


答案 2

推荐