Home > Java > javaTutorial > body text

How to Eliminate Blank Space When Moving a JMenuBar to the Mac Screen Menu Bar?

Mary-Kate Olsen
Release: 2024-10-28 02:58:31
Original
456 people have browsed it

How to Eliminate Blank Space When Moving a JMenuBar to the Mac Screen Menu Bar?

Moving JMenuBar to Screen Menu Bar on Mac OS X without Blank Space

Problem:

Moving the JMenuBar to the screen menu bar using System.setProperty("apple.laf.useScreenMenuBar", "true") leaves blank space in the window where the menu would normally reside.

Answer:

The blank space issue can be resolved by performing the following steps:

  • Set the property at launch time: Instead of setting the property after launching the program, set it at launch time using the following command:
java -Dapple.laf.useScreenMenuBar=true -jar MyApplication.jar
Copy after login
  • Set the property in Info.plist: Alternatively, set the property in your application bundle's Info.plist file:
<key>Properties</key>
<dict>
    <key>apple.laf.useScreenMenuBar</key>
    <string>true</string>
    ...
</dict>
Copy after login

Note:

The issue does not occur when following the approach suggested in the provided code sample. Other factors, such as the missing DesktopMain component, may contribute to the problem.

The above is the detailed content of How to Eliminate Blank Space When Moving a JMenuBar to the Mac Screen Menu Bar?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!