有什么办法可以固定窗户吗?
有什么方法可以让窗口固定下来,这样用户就无法在java中改变窗口大小了?
Is there any way to make a window fixed so that the user can't change the window size in java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
框架
类(及其子类JFrame
Swing 类)有一个setResizing
方法将设置Frame
是否可以调整大小。The
Frame
class (and its childJFrame
class for Swing) there is asetResizable
method which will set whether or not aFrame
can be resized or not.我的解决方案。
My solution.
在 Frame 类中,有一个 setResizing 方法,用于设置 Frame 是否可以调整大小。所以,如果你想固定窗口,只需编写 setResizable(false) 即可。
In the Frame class, there is a setResizable method which will set whether or not a Frame can be resized or not. So, if you want to fixed window than just write setResizable(false).