展开JFrame之后如何固定JPanels的位置

时间:2018-12-27 14:15:13

标签: java swing jpanel layout-manager flowlayout

我正在尝试使用Java Swing制作程序的接口。我有一个容器,在其中添加了3个带有某些组件的JPanels。问题是,当我扩展框架时,所有这三个JPanel都排在第一行。

这是我的代码:

import java.awt.Color;
import java.awt.Container;
import java.awt.FlowLayout;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.SpringLayout;
import javax.swing.border.LineBorder;

public class GraphicRefact extends JFrame {
    private Container container;

    private JButton button2;
    private JButton button1;
    private JTextField textField01;
    private JLabel label01;

    private JButton button03;
    private JButton button04;
    private JTextField textField03;
    private JLabel label03;

    private JButton button02;
    private JButton button01;
    private JTextField textField02;
    private JLabel label02;

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

    public GraphicRefact() {
        initializeComponents();

        setTitle("Title");
        setSize(500, 150);
        setVisible(true);
        setDefaultCloseOperation(EXIT_ON_CLOSE);

        container = new JPanel();


        JPanel panel01 = new JPanel();

        panel01.add(label01);
        panel01.add(textField01);
        panel01.add(button2);
        panel01.add(button1);
        panel01.setBorder(new LineBorder(Color.BLACK, 3));
        container.add(panel01);



        JPanel panel02 = new JPanel();

        panel02.add(label02);
        panel02.add(textField02);
        panel02.add(button02);
        panel02.add(button01);
        container.add(panel02);

        JPanel panel03 = new JPanel();

        panel03.add(label03);
        panel03.add(textField03);
        panel03.add(button03);
        panel03.add(button04);
        container.add(panel03);

        add(container);

    }

    private void initializeComponents() {

        button1 = new JButton("Open");
        button2 = new JButton("Close");
        textField01 = new JTextField("Choose the path...");
        label01 = new JLabel("Choose File: ");

        button01 = new JButton("Button01");
        button02 = new JButton("Button02");
        textField02 = new JTextField("Choose the path...");
        label02 = new JLabel("Choose Dir:");

        button03 = new JButton("Button03");
        button04 = new JButton("Button03");
        textField03 = new JTextField("Choose the path...");
        label03 = new JLabel("Choose Dir:");
    }

}

这是程序在扩展框架前后的外观。

之前:

enter image description here

之后:

enter image description here

因此,即使在扩展框架之后,我仍希望程序将这3个JPanels保留在容器的中间。

谢谢!

4 个答案:

答案 0 :(得分:1)

您必须使用适当的LayoutManager。看那里的例子。 BoxLayout似乎就是您想要的。

答案 1 :(得分:1)

您可以设置gridLayout并将这些元素放入其中。

JPanel jp = new JPanel();
GridLayout gl = new GridLayout(3,4) //3 rows, 4 columns
jp.setLayout(gl);

完成此操作后,只需按顺序将元素放入布局中即可。

jp.add(label1);
jp.add(button1);
etc...

答案 2 :(得分:0)

我看不到您在哪里定义了任何职位,如果您需要阅读如何做的话,可以从这里开始

Positioning a JPanel in a JFrame at specific position

答案 3 :(得分:0)

java swing的内置布局管理器没有那么有用。 您应该使用此

frame.setLayout(null);
component.setLocation(x, y);
frame.add(component);