如何将JMenuBar移动到Mac OS X上的屏幕菜单栏?

时间:2012-01-21 18:45:18

标签: java macos swing jmenubar

当我将JMenuBar移动到Mac OS X上的屏幕菜单栏时,会留下一些空白区域,菜单会出现在我的窗口中;我需要删除那个空间。我正在使用

System.setProperty("apple.laf.useScreenMenuBar", "true")

将我的JMenuBar移至屏幕菜单栏。我的朋友使用Mac报告,如果我没有设置该属性,这将留下一些丑陋的垂直空间,菜单将驻留在该空间中。解决此问题的最佳方法是什么?

编辑:这是我的来源的一个例子:

public static void main(String[] args) {
    System.setProperty("apple.laf.useScreenMenuBar", "true");
    System.setProperty("com.apple.mrj.application.apple.menu.about.name", "Name");

    JFrame frame = new JFrame("Gabby");
    final DesktopMain dm = new DesktopMain();

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.add(dm);
    frame.setSize(160, 144);
    frame.setLocationRelativeTo(null);
    frame.setIgnoreRepaint(true);

    JMenuBar menuBar = new JMenuBar();
    JMenu fileMenu = new JMenu("File");
    menuBar.add(fileMenu);

    // Populating the menu bar code goes here

    frame.setJMenuBar(menuBar);
    frame.setVisible(true);
}

4 个答案:

答案 0 :(得分:11)

根据完成的时间,在程序启动后设置属性可能为时已晚,无法生效。而是在发布时添加设置。

java -Dapple.laf.useScreenMenuBar=true -jar MyApplication.jar

或者,如Java Deployment Options for Mac OS XJava Dictionary Info.plist KeysAbout Info.plist KeysJava Runtime System Properties中所述,在应用包Info.plist中设置该属性。

<key>Properties</key>
<dict>
    <key>apple.laf.useScreenMenuBar</key>
    <string>true</string>
    ...
</dict>

附录:如下所示,使用@Urs Reupke或我建议的方法,问题出现。你的(遗失的)DesktopMain可能有错。

Screen capture

import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JPanel;

/** @see http://stackoverflow.com/questions/8955638 */
public class NewMain {

    public static void main(String[] args) {
        System.setProperty("apple.laf.useScreenMenuBar", "true");
        System.setProperty(
            "com.apple.mrj.application.apple.menu.about.name", "Name");
        EventQueue.invokeLater(new Runnable() {

            @Override
            public void run() {

                JFrame frame = new JFrame("Gabby");
                final JPanel dm = new JPanel() {

                    @Override
                    public Dimension getPreferredSize() {
                        return new Dimension(320, 240);
                    }
                };
                dm.setBorder(BorderFactory.createLineBorder(Color.blue, 10));

                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(dm);
                frame.pack();
                frame.setLocationByPlatform(true);

                JMenuBar menuBar = new JMenuBar();
                JMenu fileMenu = new JMenu("File");
                menuBar.add(fileMenu);
                frame.setJMenuBar(menuBar);
                frame.setVisible(true);
            }
        });
    }
}

答案 1 :(得分:3)

作为trashgod建议的替代方案,做你正在做的事情 - 但是在你初始化UI之前很早就做了。

此外,您可以考虑使用它在栏中显示您的应用程序名称:

    System.setProperty("com.apple.mrj.application.apple.menu.about.name", "MyApplication");

答案 2 :(得分:1)

我知道这个问题很旧,但是对我有用的是我创建了一个名为Main的新类,然后将系统属性设置为

System.setProperty("apple.laf.useScreenMenuBar", "true");
System.setProperty("apple.awt.application.name", "My app");

在JDK15中工作。

答案 3 :(得分:0)

对于Java 8,请使用此

System.setProperty("apple.awt.application.name", "My app");