JMenuBar 在 Mac OS X Lion 上不显示,但在 Win7 上显示

发布于 2025-01-08 12:11:43 字数 791 浏览 0 评论 0原文

线程标题已经解释了我的问题是什么。这是一个已知的错误吗?我在互联网上搜索但找不到解决方案。

那么,您知道该怎么做吗?

public static void main(String[] args) {
    JFrame frame = new JFrame("Menu");
    frame.setVisible(true);
    frame.setSize(500,500);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JMenuBar menubar = new JMenuBar();
    frame.setJMenuBar(menubar);

    JMenu file = new JMenu("File");
    menubar.add(file);
    JMenuItem exit = new JMenuItem("Exit");
    file.add(exit);

    JMenu help = new JMenu("Help");
    menubar.add(help);
    JMenuItem about = new JMenuItem("About");
    help.add(about);

class exitAction implements ActionListener {

    public void actionPerformed(ActionEvent e){
        System.exit(0);
    }   
}

exit.addActionListener(new exitAction());
}

the thread title already explains what my problem is. Is this a known bug? I searched the internet but couldn't find a solution.

So, do you maybe know what to do?

public static void main(String[] args) {
    JFrame frame = new JFrame("Menu");
    frame.setVisible(true);
    frame.setSize(500,500);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JMenuBar menubar = new JMenuBar();
    frame.setJMenuBar(menubar);

    JMenu file = new JMenu("File");
    menubar.add(file);
    JMenuItem exit = new JMenuItem("Exit");
    file.add(exit);

    JMenu help = new JMenu("Help");
    menubar.add(help);
    JMenuItem about = new JMenuItem("About");
    help.add(about);

class exitAction implements ActionListener {

    public void actionPerformed(ActionEvent e){
        System.exit(0);
    }   
}

exit.addActionListener(new exitAction());
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

朕就是辣么酷 2025-01-15 12:11:43

1) 您的代码行

frame.setVisible(true);

必须是 main 方法 中的最后一个代码行

2) Swing GUI 不是线程安全的,那么 main 方法 应该是包装到 invokeLater()

1) your code line

frame.setVisible(true);

must be last code line in the main method

2) Swing GUI isn't thread safe, then main method should be wrapped into invokeLater()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文