如何在这里使用 setResizing 方法
我使用 netbeans 作为 IDE。我如何在 JFrame 上设置 setResizes(false)
。我在 netbeans 中看不到 JFrame 的对象。
I am using netbeans as an IDE. how can i set setResizable(false)
on JFrame.I dont see the object of JFrame in netbeans.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需在类的非静态方法中调用 setResizable(false); 即可。
从图像来看
这清楚地表明您已经扩展了
JFrame
类。Just call
setResizable(false);
in non static methods of the class.From the image
It is a clear indication that you have already extends the
JFrame
class.假设您已经扩展了 JFrame,最简单的方法是在“属性”窗口中 - “其他属性”中有一个“可调整大小”属性,您可以在其中取消选中该框。
或者,在“源”视图中,您将有一个构造函数 - 将其放在那里。例如,如果您的类名称是 MyFrame
Assuming you've extended JFrame, the easiest way is in the Properties window - there is a property "resizable" in "Other Properties" where you can just untick the box.
Or, in the Source view you will have a constructor - put it there. e.g. if your class name is MyFrame
一般我们希望JFrame创建一个Frame。
Generally we entend JFrame to create a Frame.