Java 有没有办法强制执行最小窗口大小?

发布于 2024-08-26 10:11:46 字数 283 浏览 9 评论 0原文

Java 有没有办法强制执行最小窗口大小?

我能找到的最后一篇文章是 1999 年的,其中有一些复杂的代码来模仿这种行为...... http://www.javaworld.com/javaworld/ javaqa/1999-10/03-qa-window.html

肯定有一个简单的方法可以使用吗?

Is there any way in Java to enforce a minimum window size?

The last article I can find is from 1999, and has some complicated code to mimic the behaviour...
http://www.javaworld.com/javaworld/javaqa/1999-10/03-qa-window.html

Surely there is a simple method that can be used?

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

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

发布评论

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

评论(1

隐诗 2024-09-02 10:11:46

我通常通过设置 JComponents 在窗口内。

jcomponent.setMinimumSize(Dimension d);

该行代码将限制组件的最小大小。

您还可以直接在 JFrame 上调用 setMinimumSize() 来实现类似的效果。

I usually set the minimum size of a window by setting the minimum sizes of the JComponents inside of the window.

jcomponent.setMinimumSize(Dimension d);

That line of code will limit a component's minimum size.

You can also call setMinimumSize() on the JFrame directly to achieve a similar effect.

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