我知道我们可以使用 Jayatana 为 Java Swing 应用程序启用全局菜单。但我正在寻找全局菜单支持JavaFX应用程序。搜索后,我发现设置使用系统菜单栏在 JavaFX 中使用它来在 Mac 中实现相同类型的行为。但它在 Ubuntu 中不起作用。
我的Java代码:
import javafx.application.*;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.scene.paint.*;
import javafx.stage.*;
public class Main extends Application {
@Override
public void start(Stage primaryStage) {
BorderPane root = new BorderPane();
Scene scene = new Scene(root, 300, 250, Color.WHITE);
MenuBar menuBar = new MenuBar();
// Use system menu bar
menuBar.setUseSystemMenuBar(true);
menuBar.prefWidthProperty().bind(primaryStage.widthProperty());
root.setTop(menuBar);
Menu fileMenu = new Menu("File");
Menu webMenu = new Menu("Web");
Menu sqlMenu = new Menu("SQL");
menuBar.getMenus().addAll(fileMenu, webMenu, sqlMenu);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
输出:
这里还有关于此问题的错误报告:Gtk:实现全局系统菜单栏支持
有没有什么解决方法可以解决这个问题?
答案1
查看代码,虽然我并不是一名经验丰富的 FX 开发人员,但看起来“root.setTop(menuBar);”这一行将菜单栏定位在容器的顶部,而不是整个显示屏的顶行。我认为需要其他命令。我只有 Java AWT 和 Swing 经验,可能错了。