在JPanel中显示JDesktopPane

时间:2015-09-12 01:00:42

标签: java swing jpanel jdesktoppane

我在使用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();
            }
        });
    }
}

1 个答案:

答案 0 :(得分:3)

  • arm64, armv7, armv7s没有使用布局管理器,因此默认/首选尺寸为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);