一个类中的多个FlowLayouts?

时间:2015-10-13 17:02:57

标签: java netbeans flowlayout

所以我有我的主,这是在它内部完成的。

  JFrame CF = new JFrame();
    CF.setLayout(new BorderLayout());
    CF.add(new CarGUI(), BorderLayout.NORTH);
    // CF.add(new CarGUI(), BorderLayout.SOUTH);
    //' South FlowLayout ' here ^  
    CF.setSize(600,400);
    CF.setVisible(true);

在我的CarGUI课程中,我有:

public class CarGUI extends JPanel {

private CarTaxManager manager;
private JLabel lpLabel;
private JTextField searchField;
private JButton searchButton;

public CarGUI(){
    FlowLayout NorthLayout = new FlowLayout();
    //this.setLayout(new FlowLayout());
    this.setLayout(NorthLayout);
    lpLabel = new JLabel("License Plate");
    searchField = new JTextField(10);
    searchButton = new JButton("Search");

    add(lpLabel);
    add(searchField);
    add(searchButton);
}

所以基本上必须在这里发生的事情是,我需要制作另一个流程布局,称为“SouthLayout”,而在主要部分,我需要将它放到那个。但是,flowlayout必须在CarGUI中完成。我似乎无法让这个工作。

编辑:

最终看起来像什么:

enter image description here

所以我总共需要两个FlowLayouts。一个用于顶部,一个用于底部。它们都没有包含中间的TextPane。 这一切都出现在主要的borderLayout中。

提前致谢!

2 个答案:

答案 0 :(得分:2)

听起来像是BorderLayout

的好候选人

根据您向我们展示的内容,我已修改您的代码以便在实施时获得良好的开端:

public class CarGUI extends JPanel {

private CarTaxManager manager;
private JLabel lpLabel;
private JTextField searchField;
private JButton searchButton;

public CarGUI(){
    setLayout(new BorderLayout());

    JPanel north = new JPanel();
    north .setLayout(new FlowLayout());
    lpLabel = new JLabel("License Plate");
    searchField = new JTextField(10);
    searchButton = new JButton("Search");
    north.add(lpLabel);
    north.add(searchField);
    north.add(searchButton);
    add(north, BorderLayout.NORTH);


    JPanel center = new JPanel();
    center.setLayout(new FlowLayout());
    //TODO add components to center
    add(center, BorderLayout.CENTER);

    JPanel south= new JPanel();
    south.setLayout(new FlowLayout());
    //TODO add components to south
    add(south, BorderLayout.SOUTH);

}

答案 1 :(得分:0)

我认为BorderLayout会很好用。大文本字段可以位于中心,您可以在其上方和下方使用按钮和菜单。当然,一个简单的BoxLayout也可以很好地完成工作。这是一个关于如何使用BorderLayout实现此目的的简单示例。

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.FlowLayout;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;


public class CarGUI extends JFrame {

    public CarGUI() {
        initGUI();
    }

    public void initGUI() {
        setLayout(new BorderLayout());
        setSize(600, 400);
        initNorthGUI();
        initCenterGUI();
        initSouthGUI();
        setVisible(true);
    }

    private void initNorthGUI() {
        JPanel northPanel = new JPanel();
        northPanel.setLayout(new FlowLayout());
        northPanel.add(new JLabel("License Plate"));
        northPanel.add(new JTextField(10));
        northPanel.add(new JButton("Search"));
        add(northPanel, BorderLayout.PAGE_START);

    }

    private void initCenterGUI() {
        JLabel centerPanel = new JLabel("Center");
        centerPanel.setBorder(BorderFactory.createLineBorder(Color.black));
        add(centerPanel, BorderLayout.CENTER);
    }

    private void initSouthGUI() {
        JPanel southPanel = new JPanel();
        southPanel.setLayout(new FlowLayout());
        southPanel.add(new JButton("Some Button"));
        southPanel.add(new JComboBox());
        add(southPanel, BorderLayout.PAGE_END);
    }

    public static void main(String args[]) {
        CarGUI c = new CarGUI();
    }
}

每个人' JPanel'或任何其他container都可以拥有自己的布局管理器。因此,如果您希望在应用程序的一部分中使用不同的布局,请添加具有所需布局的JPanel。