Java 有没有办法强制执行最小窗口大小?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通常通过设置
JComponents
在窗口内。该行代码将限制组件的最小大小。
您还可以直接在
JFrame
上调用setMinimumSize()
来实现类似的效果。I usually set the minimum size of a window by setting the minimum sizes of the
JComponents
inside of the window.That line of code will limit a component's minimum size.
You can also call
setMinimumSize()
on theJFrame
directly to achieve a similar effect.