Tag: jmenubar

如何将JTextField添加到JFrame的MenuBar?

我一直在尝试重载JMenu并添加一些自定义代码来支持JTextField,但这并不顺利。 我的主要目的是在菜单项的右侧添加一个搜索字段。 所以我有左边的文件,编辑,帮助,然后右边是搜索栏,几乎就像在某些浏览器中有一个谷歌搜索栏。 有谁知道如何添加此function?

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

当我将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 […]