布局管理器preferredSize Java

前端之家收集整理的这篇文章主要介绍了布局管理器preferredSize Java前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我还在努力学习布局管理器的工作方式.我用两个JPanel制作了一个Frame.
第一个包含带有BoxLayout的textArea.
第二个包含带按钮的流程布局.

我相应地设置了每个面板的preferredSize,打包它们,但得到了意想不到的结果.

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

public class LayoutMgrTest
{
    public static void main(String[] args)
    {
        TableBasic frame = new TableBasic();
        frame.setDefaultCloSEOperation( EXIT_ON_CLOSE );
        frame.setVisible(true);


        frame.getContentPane().setLayout(new GridLayout(2,1));

        JPanel controlPane = new JPanel();
        JPanel buttonPane = new JPanel();

        controlPane.setLayout(new BoxLayout(controlPane,BoxLayout.PAGE_AXIS));
        controlPane.setPreferredSize(new Dimension(200,200));
        controlPane.add(new JScrollPane(new JTextArea()));

        buttonPane.setLayout(new FlowLayout(FlowLayout.LEFT));
        buttonPane.setPreferredSize(new Dimension(100,20));
        buttonPane.add(new JButton("Button1"));
        buttonPane.add(new JButton("Button2"));

        frame.getContentPane().add(controlPane,BorderLayout.NORTH);
        frame.getContentPane().add(buttonPane,BorderLayout.SOUTH);
        frame.setSize(new Dimension(500,500));
        frame.pack();
    }
}

无论我做什么,如果我使用网格布局,它似乎总是为每个控件分配一半的可用空间.有人告诉我:

The height of each row is dependent on the height of each component
added in each row.

buttonpane的高度为20.它的分配远远超过它:

这段代码出了什么问题?
我想请保留两张JPanels.简单地将文本框和按钮直接添加到框架很容易,但我需要使用JPanels(因为我将添加边框和其他东西).

解决方法

这是使用GridLayout作为布局管理器的结果.将其更改为BorderLayout:
frame.getContentPane().setLayout(new BorderLayout());

例如,这段代码(我从原版中改变了一点):

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

public class LayoutMgrTest
{
    public static void main(String[] args)
    {
        JFrame frame = new JFrame();
        frame.setDefaultCloSEOperation( JFrame.EXIT_ON_CLOSE );
        //frame.setVisible(true);   
        //frame.getContentPane().setLayout(new BorderLayout());

        JPanel controlPane = new JPanel();
        JPanel buttonPane = new JPanel();

        controlPane.setLayout(new BoxLayout(controlPane,40));
        buttonPane.add(new JButton("Button1"));
        buttonPane.add(new JButton("Button2"));

        frame.add(controlPane,BorderLayout.NORTH);
        frame.add(buttonPane,BorderLayout.SOUTH);
        //frame.setSize(new Dimension(500,500));
        frame.pack();
        frame.setVisible(true);
    }
}

生成此框架:

原文链接:https://www.f2er.com/java/127377.html

猜你在找的Java相关文章