3

我有这个代码

package com.net.Forms;
import javax.swing.JButton;
import javax.swing.JFrame;

public class MainForm {

    protected static JFrame window = new JFrame("Test Form");
    protected static JButton btnOK = new JButton("OK!");

    public static void Main() {
        load();
        return;
    }
        public static void load() {
        window.setSize(500, 500);
        window.setVisible(true);
        //btnOK.setSize(50, 50); //here
        window.add(btnOK);
        btnOK.setEnabled(true);
        btnOK.setVisible(true);


        }

}

为什么按钮仍然填充框架而不是像我上面所说的那样是 50 X 50

任何帮助,将不胜感激

4

2 回答 2

5

的默认布局JFrameBorderLayout. 这就是为什么当您向其中添加 aJButton时,它将添加JButtoncenter并扩展它以覆盖整个窗口。BorderLayout不尊重setSize(..)添加到它们的组件的方法。如果您仍想为要添加到的组件提供首选大小,JFrame则应将布局更改为FlowLayoutor GridLayoutor others.. 然后setPreferredSize(..)在将组件添加到JFrame. 例如,您的代码可以通过以下方式进行修改。

import java.awt.*;
import javax.swing.*;

public class MainForm {

    protected  JFrame window = new JFrame("Test Form");
    protected  JButton btnOK = new JButton("OK!");

    public static void main(String st[]) {
        SwingUtilities.invokeLater( new Runnable()
        {
            public void run()
            {
                MainForm mf = new MainForm();
                mf.load();
            }
        });

    }
    public void load() {
    Container c = window.getContentPane();
    c.setLayout(new FlowLayout());//Set layout to be FlowLayout explicitly.
    btnOK.setPreferredSize(new Dimension(100,50));//use set PreferredSize
    c.add(btnOK);
    c.setSize(500, 500);
    c.setVisible(true);
    }

}
于 2013-04-29T17:43:34.997 回答
-1

它只是一个错误或某事。添加到框架的最后一个元素占据了它的整体。

所有你需要做的:
声明一个新的简单组件,比如 JLabel()
将它添加到框架中。
不要为它设置边界或大小。只是一个新标签。
确保此标签是添加到框架的最后一个元素。
希望它有效。

于 2017-07-21T13:46:20.220 回答