我很难将JDesktopPane(包含JInternalFrame)添加到JPanel。正确的方法是什么?我究竟做错了什么?

这是我的例子:

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

public class MainPanel extends JPanel {

    JDesktopPane jDesktopPane = new JDesktopPane();
    JInternalFrame jInternalFrame = new JInternalFrame();

    public MainPanel() {

        jDesktopPane.add(jInternalFrame);
        add(jDesktopPane);
        setSize(400,400);
        setVisible(true);
    }

    private static void createAndShowGui() {

        JFrame frame = new JFrame("This isn't working...");
        MainPanel mainPanel = new MainPanel();
        frame.setLayout(new BorderLayout());

        frame.add(mainPanel, BorderLayout.CENTER);
        frame.setContentPane(mainPanel);
        frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
        frame.setLocationByPlatform(false);
        frame.setSize(500, 500);
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGui();
            }
        });
    }
}

最佳答案

JDesktop不使用布局管理器,因此默认/首选大小为0x0
JPanel默认情况下使用FlowLayout,当布置它们的子组件时,会优先使用preferredSize


因此,在构造函数中,您可以尝试将默认布局管理器改为BorderLayout

public MainPanel() {
    setLayout(new BorderLayout());
    jDesktopPane.add(jInternalFrame);
    add(jDesktopPane);
    // pointless
    //setSize(400,400);
    // pointless
    //setVisible(true);
}


现在,由于您实际上没有定义任何东西的首选大小,因此您应该提供自己的...

public Dimension getPreferredSize() {
    return new Dimension(400, 400);
}


然后,当您创建UI时,您可以简单地打包框架...

private static void createAndShowGui() {

    JFrame frame = new JFrame("This should be working now...");
    MainPanel mainPanel = new MainPanel();
    frame.setLayout(new BorderLayout());

    // pointless considering the setContentPane call
    //frame.add(mainPanel, BorderLayout.CENTER);
    frame.setContentPane(mainPanel);
    frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
    frame.pack();
    frame.setLocationByPlatform(false);
    //frame.setSize(500, 500);
    frame.setVisible(true);
}


现在,由于JDesktopPane不使用任何布局管理器,因此您有责任确保所添加内容的位置和大小

jInternalFrame.setBounds(10, 10, 200, 200);
// Just like any frame, it's not visible when it's first created
jInternalFrame.setVisible(true);

10-07 15:12