尝试使用JSplitPane将我创建的3个面板添加到Java框架中。已经尝试了2个面板,并且效果很好,但是使用3个面板仍然不能满足我的要求。

已经阅读了有关制作2个JSplitPanes并将其放在另一个中的知识,但这实际上并不能满足我的要求。

我的代码显示有3个面板,但是大小都错了。

我的代码:

    frame = new JFrame(); // Create a new frame
    frame.setVisible(true); // Makes it visible
    frame.setSize(900, 500); // Sets size
    frame.setTitle(""); // Sets title
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setLocationRelativeTo(null); // Sets the window on the center of the screen

    temp_panel = new JPanel(); // Creates new JPanel
    water_panel = new JPanel(); // Creates new JPanel
    power_panel = new JPanel(); // Creates new JPanel

    temp_panel.setBackground(Color.decode("#2ecc71")); // Sets color
    water_panel.setBackground(Color.decode("#3498db")); // Sets color
    power_panel.setBackground(Color.decode("#f1c40f")); // Sets color

    temp_label = new JLabel("This is Temperature");
    water_label = new JLabel("This is Water consumption");
    power_label = new JLabel("This is Power consumption");

    // Add labels on panel
    temp_panel.add(temp_label);
    water_panel.add(water_label);
    power_panel.add(power_label);

    JSplitPane splitPaneLeft = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
    JSplitPane splitPaneRight = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT);
    splitPaneLeft.setLeftComponent( temp_panel );
    splitPaneLeft.setRightComponent( water_panel );
    splitPaneRight.setLeftComponent( splitPaneLeft );
    splitPaneRight.setRightComponent( power_panel );

    splitPaneLeft.setEnabled(false);
    splitPaneLeft.setDividerSize(0);

    splitPaneRight.setEnabled(false);
    splitPaneRight.setDividerSize(0);

    // put splitPaneRight onto a single panel
    JPanel panelSplit = new JPanel();
    panelSplit.add( splitPaneRight );

    frame.add(panelSplit, BorderLayout.CENTER);


它看起来应该像这样,但是只有3个面板,具有3种不同的颜色而不是2种!



希望有人能帮忙

最佳答案

如果您不需要在运行时更改组件的相对大小,请不要使用JSplitPane。而是创建一个使用GridLayout的容器JPanel,例如说new GridLayout(1, 0) 1行和可变的列数,使用JPanel将三个彩色的JPanels添加到GridLayout,然后将其添加到JFrame。

10-08 18:09