When I try to add a JMenuBar to my frame in Mac, it doesn't show up. I assume it's because JMenuBar isn't integrated into the Mac native method. So can anybody help me with the code that I can use to make my bar viewable?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can also set the |
|||
|
|
|
Firstly it you need to tell the JVM to use the MenuBar like:
Then in your JFrame set the menu bar like so:
|
|||||||
|
|
Add the following VM argument to the java call:
|
|||
|
|
useScreenMenuBarusing any of the approaches suggested. This example may help clarify exactly what isn't showing up where. – trashgod Apr 2 '12 at 10:20