Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
为什么我不能将 JMenuBar 添加到 JToolBar,可以吗?或者我只能在框架上添加菜单栏?教程说:
如代码所示,要为 JFrame 设置菜单栏,请使用 setJMenuBar 方法。要将 JMenu 添加到 JMenuBar,请使用 add(JMenu) 方法。要将菜单项和子菜单添加到 JMenu,请使用 add(JMenuItem) 方法。
以及如何为 JToolBar 设置菜单栏?
是的,您会将JMenu而不是JMenuBar添加到JToolBar。JMenuBar穿过框架。