无法设置 JMenuBar

发布于 2024-12-10 17:28:59 字数 757 浏览 0 评论 0原文

我有一个 GUI,我试图添加一个菜单栏,但每次我尝试添加 JmenuBar 时,它都会说它期待一个 java.awt.menubar,并找到一个 java.swing.Jmenubar,这是它应该检测到的。这是我的代码。

class CipherGUIFrame extends JFrame{

   public CipherGUIFrame(){    
      super("Caesar Cipher GUI");
      setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      setSize(400, 600);

      Container content = getContentPane();
      content.setLayout(new BoxLayout(content, BoxLayout.Y_AXIS));    

      JMenuBar menuBar = new JMenuBar();

      menu = new JMenu("File");
      open = new JMenuItem("Open");
      save = new JMenuItem("Close");         

      menu.add(open);
      menu.add(save);
      menuBar.add(menu);

      setMenuBar(menuBar); // this line here is what gives me the error    
   }    
}

I have a GUI I am trying to add a menubar to but every time I try to add the JmenuBar it says it's expecting a java.awt.menubar and found a java.swing.Jmenubar which is what it should detect. Here is my code.

class CipherGUIFrame extends JFrame{

   public CipherGUIFrame(){    
      super("Caesar Cipher GUI");
      setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
      setSize(400, 600);

      Container content = getContentPane();
      content.setLayout(new BoxLayout(content, BoxLayout.Y_AXIS));    

      JMenuBar menuBar = new JMenuBar();

      menu = new JMenu("File");
      open = new JMenuItem("Open");
      save = new JMenuItem("Close");         

      menu.add(open);
      menu.add(save);
      menuBar.add(menu);

      setMenuBar(menuBar); // this line here is what gives me the error    
   }    
}

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

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

发布评论

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

评论(2

腻橙味 2024-12-17 17:28:59

我认为你需要使用“setJMenuBar”而不是 setMenuBar

I think you need to use 'setJMenuBar' instead of setMenuBar

旧城空念 2024-12-17 17:28:59

您可以尝试 setJMenuBar() 代替

You can try setJMenuBar() instead

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