如何在Java中使窗口小于125 x 50?

发布于 2024-11-06 00:34:44 字数 438 浏览 1 评论 0原文

我正在尝试用 Java 创建一个 50x50 的窗口,但该窗口不会小于 125x50,即使我尝试手动调整它的大小。

这是我当前的代码:

import javax.swing.*;
public class smallwindow {
    public static void main(String args[]) {
        JFrame frame = new JFrame("");
        frame.setSize(50, 50);
        frame.setVisible(true);
    }
}

我正在 Mac OS X 上使用最新版本的 Java 运行此代码。 有没有办法用 JFrame 来做到这一点,或者我需要使用其他东西,比如 AWT?

**编辑:有没有办法在保留标题栏、窗口管理按钮等的同时做到这一点?

I'm trying to create a 50x50 window in Java but the window won't go smaller than 125x50, even if I try to manually resize it.

Here's my code currently:

import javax.swing.*;
public class smallwindow {
    public static void main(String args[]) {
        JFrame frame = new JFrame("");
        frame.setSize(50, 50);
        frame.setVisible(true);
    }
}

I am running this with the latest version of Java on Mac OS X.
Is there any way to do this with a JFrame, or would I need to use something else, like maybe AWT?

**edit: is there a way to do this while retaining the titlebar, window management buttons, etc.?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

榆西 2024-11-13 00:34:44

您必须在 JFrame 上执行以下操作:

frame.setUndecorated(true);

You would have to do the following on the JFrame:

frame.setUndecorated(true);
哆啦不做梦 2024-11-13 00:34:44

伙计们,我做了更多研究,显然有一个名为 setMinimumSize 的方法

基本上,您需要做的就是添加

Dimension minimumSize = new Dimension(50, 50);  
frame.setMinimumSize(minimumSize);`

我发现如果尺寸小于大约 75x75,则调整大小它会突然将最小宽度更改为 75 左右。解决方案就是执行 frame.setResizes(false)

但无论如何,感谢您的帮助!

Guys, I did a little more looking into it, apparently there is a method called setMinimumSize

Basically, all you need to do is add

Dimension minimumSize = new Dimension(50, 50);  
frame.setMinimumSize(minimumSize);`

I've found that if the size is less than about 75x75, then resizing it will suddenly change the minimum width to around 75. The solution is to just to do frame.setResizable(false)

But anyways, thanks for all your help!

阪姬 2024-11-13 00:34:44

但是有没有办法做到这一点,以便您仍然保留标题栏、窗口管理按钮等?

您可以使用包含标题栏的 Metal LAF:

JFrame.setDefaultLookAndFeelDecorated(true);
JFrame frame = new JFrame(...);

but is there anyway to do this such that you still retain the tilebar, window management buttons, etc.?

You can use the Metal LAF which includes the title bar:

JFrame.setDefaultLookAndFeelDecorated(true);
JFrame frame = new JFrame(...);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文