无法设置 JMenuBar
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你需要使用“setJMenuBar”而不是 setMenuBar
I think you need to use 'setJMenuBar' instead of setMenuBar
您可以尝试 setJMenuBar() 代替
You can try setJMenuBar() instead