使用GridBagLayout在JFrame内部具有不同宽度的多个JPanel

时间:2014-12-02 18:26:47

标签: java swing jpanel layout-manager gridbaglayout

我试图在JFrame中创建两个不同宽度的面板。我希望我的右侧面板的宽度是左侧面板的两倍。我尝试使用GridBagLayout,我的左侧面板使用gridwidth = 1,右侧面板使用gridwidth = 2。但是我没有获得不同的宽度,而是获得两个宽度相同的面板。我应该改变什么?任何帮助将不胜感激。

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

public class AppFrame2 extends JFrame {

    GridBagLayout gbl;
    GridBagConstraints gbc;
    JPanel leftpanel;
    JPanel rightpanel;

    public AppFrame2() {
        this.setSize(500, 500);
        this.setResizable(false);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.setVisible(true);
        this.getContentPane().setBackground(Color.BLACK);

        // Settning Frame Layout
        gbl = new GridBagLayout();
        gbc = new GridBagConstraints();
        this.setLayout(gbl);

        gbc.fill = GridBagConstraints.BOTH;
        gbc.weightx = 1.0;
        gbc.weighty = 1.0;

        // Add Panels
        leftpanel = new JPanel();
        leftpanel.setBackground(Color.green);
        this.addPanels(0, 0, 1, 1, leftpanel); // row, col, height, width component

        rightpanel = new JPanel();
        rightpanel.setBackground(Color.red);
        this.addPanels(0, 1, 1, 2, rightpanel);
    }

    private void addPanels(int row, int col, int height, int width,
        Component com) {
        gbc.gridx = col;
        gbc.gridy = row;
        gbc.gridheight = height;
        gbc.gridwidth = width;
        gbl.setConstraints(com, gbc);
        this.getContentPane().add(com);
    }

    public static void main(String[] args) {
        new AppFrame2();
    }

}

1 个答案:

答案 0 :(得分:4)

您的问题是您没有指定列的宽度。添加行gbl.columnWidths = new int[] {500/3, 500/3*2};会将列的宽度设置为您希望的范围。我在这里添加了代码行以使其工作:)

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

public class AppFrame2 extends JFrame {

    GridBagLayout gbl;
    GridBagConstraints gbc;
    JPanel leftpanel;
    JPanel rightpanel;

    public AppFrame2() {
        this.setSize(500, 500);
        this.setResizable(true);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.setVisible(true);
        this.getContentPane().setBackground(Color.BLACK);

        // Settning Frame Layout
        gbl = new GridBagLayout();
        //************* New code **************//
        gbl.columnWidths = new int[] {500/3, 500/3*2};
        gbl.rowHeights = new int[] {500};
        gbl.columnWeights = new double[] {1, 1};
        gbl.rowWeights = new double[] {1};
        //************* End code **************//

        gbc = new GridBagConstraints();
        this.setLayout(gbl);

        gbc.fill = GridBagConstraints.BOTH;
        gbc.weightx = 1.0;
        gbc.weighty = 1.0;

        // Add Panels
        leftpanel = new JPanel();
        leftpanel.setBackground(Color.green);
        this.addPanels(0, 0, 1, 1, leftpanel); // row, col, height, width component

        rightpanel = new JPanel();
        rightpanel.setBackground(Color.red);
        this.addPanels(0, 1, 1, 2, rightpanel);
    }

    private void addPanels(int row, int col, int height, int width,
                           Component com) {
        gbc.gridx = col;
        gbc.gridy = row;
        gbc.gridheight = height;
        gbc.gridwidth = width;
        gbl.setConstraints(com, gbc);
        this.getContentPane().add(com);
    }

    public static void main(String[] args) {
        new AppFrame2();
    }

}