如何在这里使用 setResizing 方法

发布于 2024-11-09 20:27:44 字数 162 浏览 0 评论 0原文

在此处输入图像描述 我使用 netbeans 作为 IDE。我如何在 JFrame 上设置 setResizes(false)。我在 netbeans 中看不到 JFrame 的对象。

enter image description here
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 技术交流群。

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

发布评论

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

评论(3

一直在等你来 2024-11-16 20:27:45

只需在类的非静态方法中调用 setResizable(false); 即可。
从图像来看

setDefaultCloseOperation(javax.swing.WindowConstants.ExIT_ON_CLOSE);

这清楚地表明您已经扩展了 JFrame 类。

Just call setResizable(false); in non static methods of the class.
From the image

setDefaultCloseOperation(javax.swing.WindowConstants.ExIT_ON_CLOSE);

It is a clear indication that you have already extends the JFrame class.

浅忆流年 2024-11-16 20:27:45

假设您已经扩展了 JFrame,最简单的方法是在“属性”窗口中 - “其他属性”中有一个“可调整大小”属性,您可以在其中取消选中该框。

或者,在“源”视图中,您将有一个构造函数 - 将其放在那里。例如,如果您的类名称是 MyFrame

public class MyFrame extends javax.swing.JFrame {

    /** Creates new form MyFrame */
    public MyFrame() {
        initComponents();
        setResizable(false); // insert this line
    }

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

public class MyFrame extends javax.swing.JFrame {

    /** Creates new form MyFrame */
    public MyFrame() {
        initComponents();
        setResizable(false); // insert this line
    }
橘虞初梦 2024-11-16 20:27:45

一般我们希望JFrame创建一个Frame。

  • 检查您的代码是否扩展,然后只需调用 setResizable(false);

Generally we entend JFrame to create a Frame.

  • Check in your code if it extends , then just call setResizable(false);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文