当前位置: 首页 > 知识库问答 >
问题:

setSize()、setMaximumSize()、setMinimumSize()与GridbagLayout一起使用时有什么区别

陆飞鸿
2023-03-14

与GridBagLayout一起使用时,setSize()、setMaximumSize()、setMinimumSize()之间的区别是什么。当我使用setMaximumSize()时,它会降低面板的高度

请查找SSCCE:

public class EditUserPanel extends JPanel {
    private static final long serialVersionUID = 1L;
    private JLabel st_REQ_FIELDS = null;
    private JCheckBox ck_ISMANAGER = null;
    private JCheckBox ck_ISBPM = null;
    private JComboBox cb_LANGUAGE = null;
    private JList lb_TEAMS = null;
    private JList lb_COUNTRY = null;
    private JList lb_BRANDPM = null;
    private JTextField ef_NAME = null;
    private JTextField ef_USERID = null;
    private JScrollPane scr_TEAMS = null;
    private JScrollPane scr_COUNTRY = null;
    private JScrollPane scr_BRANDPM = null;
    private JPanel teamButtonPanel = null;
    private JPanel countryButtonPanel = null;
    private JPanel brandButtonPanel = null;
    private JButton pb_ADD_TEAM = null;
    private JButton pb_REMOVE_TEAM = null;
    private JButton pb_ADD_COUNTRY = null;
    private JButton pb_REMOVE_COUNTRY = null;
    private JButton pb_ADD_BRAND = null;
    private JButton pb_REMOVE_BRAND = null;
    private static final Insets WEST_INSETS = new Insets(5, 0, 5, 5);
    private static final Insets EAST_INSETS = new Insets(5, 5, 5, 0);   
    public EditUserPanel() {
            initialize();
    }


    public void initialize() {
        ck_ISMANAGER = new JCheckBox("Is a Manager");
        ck_ISBPM = new JCheckBox("Brand Program Manager");
        cb_LANGUAGE = new JComboBox();
        lb_TEAMS = new JList();
        lb_COUNTRY = new JList();
        lb_BRANDPM = new JList();
        ef_NAME = new JTextField();
        ef_USERID = new JTextField();
        scr_TEAMS = new JScrollPane(lb_TEAMS);
        scr_COUNTRY = new JScrollPane(lb_COUNTRY);
        scr_BRANDPM = new JScrollPane(lb_BRANDPM);
        JPanel contentPane = new JPanel();
        pb_ADD_TEAM = new JButton("Add Team");
        pb_REMOVE_TEAM = new JButton("Remove Team");
        pb_ADD_COUNTRY = new JButton("Add Country");
        pb_REMOVE_COUNTRY = new JButton("Remove Country");
        pb_ADD_BRAND = new JButton("Add Brand");
        pb_REMOVE_BRAND = new JButton("Remove Brand");
        st_REQ_FIELDS = new JLabel("* = These fields are required");
        st_REQ_FIELDS.setForeground(Color.red); 
        setLayout(new BorderLayout());
        contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.LINE_AXIS));
        contentPane.add(addBasicElements());    
        add(st_REQ_FIELDS,BorderLayout.PAGE_START);
        add(contentPane, BorderLayout.CENTER);

    }


    private Component addBasicElements() {
        // TODO Auto-generated method stub
        JPanel basicPanel = new JPanel();
        basicPanel.setLayout(new GridBagLayout());
        GridBagConstraints gbc= new GridBagConstraints();
        gbc=createGbc(0, 0);        basicPanel.add(addFormPanel(new JPanel(), new JLabel("* Name :  "),ef_NAME),gbc);
        gbc=createGbc(1, 0);        basicPanel.add(addFormPanel(new JPanel(), new JLabel("* UserID :  "), ef_USERID),gbc);
        gbc=createGbc(0, 1);        basicPanel.add(addFormPanel(new JPanel(), new JLabel("* Language :  "), cb_LANGUAGE),gbc);
        gbc=createGbc(1, 1);        basicPanel.add(addFormPanel(new JPanel(), new JLabel("                      "),ck_ISMANAGER),gbc);
        gbc=createGbc(0, 2);        basicPanel.add(addFormPanel(new JPanel(),new JLabel("Brand Manager :  "),(JPanel)addBrandManagerPanel()),gbc);
        gbc=createGbc(1, 2);        basicPanel.add(addFormPanel(new JPanel(),new JLabel("* Country :  "),(JPanel)addCountryPanel()),gbc);
        gbc=createGbc(0, 3);        basicPanel.add(addFormPanel(new JPanel(), new JLabel("* Team :  "), (JPanel)addTeamPanel()),gbc);
        basicPanel.setSize(new Dimension((int)Toolkit.getDefaultToolkit().getScreenSize().getWidth()/2,
                (int)Toolkit.getDefaultToolkit().getScreenSize().getHeight()));
        basicPanel.setBorder(BorderFactory.createEtchedBorder());
        return basicPanel;
    }

    private GridBagConstraints createGbc(int x, int y) {
        // TODO Auto-generated method stub
         GridBagConstraints gbc = new GridBagConstraints();
          gbc.gridx = x;          gbc.gridy = y;
          gbc.gridwidth = 1;          gbc.gridheight = 1;
          gbc.anchor = (x == 0) ? GridBagConstraints.WEST : GridBagConstraints.EAST;
          gbc.fill = GridBagConstraints.HORIZONTAL;
          gbc.insets = (x == 0) ? WEST_INSETS : EAST_INSETS;
          gbc.weightx = (x == 0) ? 0.1 : 1.0;
          gbc.weighty = 1.0;
          return gbc;
    }

    private Component addFormPanel(JComponent jPanel, JComponent label,
            JComponent textField) {
        // TODO Auto-generated method stub
        jPanel.setLayout(new BoxLayout(jPanel, BoxLayout.X_AXIS));
        jPanel.add(label);
        jPanel.add(textField);
//      jPanel.setBorder(BorderFactory.createEtchedBorder());
        return jPanel;
    }

    private Component addTeamPanel() {
        // TODO Auto-generated method stub
        JPanel teamPanel = new JPanel();
        teamPanel.setLayout(new BoxLayout(teamPanel, BoxLayout.Y_AXIS));
        teamPanel.add(scr_TEAMS);
        teamPanel.add(addTeamButtonPanel());
        return teamPanel;
    }

    private Component addTeamButtonPanel() {
        // TODO Auto-generated method stub
        teamButtonPanel = new JPanel();
        teamButtonPanel.setLayout(new BoxLayout(teamButtonPanel,BoxLayout.X_AXIS));
        teamButtonPanel.add(pb_ADD_TEAM);
        teamButtonPanel.add(pb_REMOVE_TEAM);
        return teamButtonPanel;
    }

    private Component addCountryPanel() {
        // TODO Auto-generated method stub
        JPanel countryPanel = new JPanel();
        countryPanel.setLayout(new BoxLayout(countryPanel, BoxLayout.Y_AXIS));
        countryPanel.add(scr_COUNTRY);
        countryPanel.add(addCountryButtonPanel());
        return countryPanel;
    }

    private Component addCountryButtonPanel() {
        // TODO Auto-generated method stub
        countryButtonPanel = new JPanel();
        countryButtonPanel.setLayout(new BoxLayout(countryButtonPanel,BoxLayout.X_AXIS));
        countryButtonPanel.add(pb_ADD_COUNTRY);
        countryButtonPanel.add(pb_REMOVE_COUNTRY);
        return countryButtonPanel;
    }

    private Component addBrandManagerPanel() {
        // TODO Auto-generated method stub
        JPanel brandmanagerPanel = new JPanel();
        brandmanagerPanel.setLayout(new BoxLayout(brandmanagerPanel, BoxLayout.Y_AXIS));        
        brandmanagerPanel.add(scr_BRANDPM);
        brandmanagerPanel.add(addBrandButtonPanel());
        return brandmanagerPanel;
    }

    private Component addBrandButtonPanel() {
        // TODO Auto-generated method stub
        brandButtonPanel = new JPanel();
        brandButtonPanel.setLayout(new BoxLayout(brandButtonPanel,BoxLayout.X_AXIS));
        brandButtonPanel.add(ck_ISBPM);
        brandButtonPanel.add(pb_ADD_BRAND);     
        brandButtonPanel.add(pb_REMOVE_BRAND);
        return brandButtonPanel;
    }

        public static void main(String[] args){
            EditUserPanel panel = new EditUserPanel();
            JFrame frame = new JFrame("SSCCE for stack overflow");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.getContentPane().add(panel, BorderLayout.CENTER);
            frame.setSize(new Dimension((int)Toolkit.getDefaultToolkit().getScreenSize().getWidth(),
                (int)Toolkit.getDefaultToolkit().getScreenSize().getHeight()));
            frame.setVisible(true);
        }

} /* EditUserPanel */

我已经移除了所有未使用的字段。当使用setSize()和setMaximumSize()时,还请查找图像,其中面板位于此行BasicPanel.setSize(新维度((int)Toolkit.GetDefaultToolkit().GetScreenSize().GetWidth()/2,(int)Toolkit.GetDefaultToolkit().GetScreenSize().GetTheight()));BasicPanel.SetBorder(BorderFactory.createEtchedBorder());返回BasicPanel;

问题:1.如何很好地显示它们,因为我无法使用setSize()或setMaximumSize()

更多信息:我可以在JFrame上使用pack()使其正确,但在我的实际代码中,这个面板出现在其他面板中,到目前为止,我找不到使用pack的地方。如果有任何与JPanel的pack相当的东西,我很乐意使用它。

共有1个答案

万俟超
2023-03-14

使用setsize()可以定义网格的大小。使用setMaximumSize()可以告诉网格,如果用户放大他的窗口,网格的增加不会超过给定的大小。对于setminimumsize(),它相当于收缩窗口。

 类似资料:
  • 问题内容: 我已经在端口8080(默认)下启动并测试了Tomcat。现在,我将连接器端口更改为80,然后重新启动了Tomcat,在最小的Debian 6.0安装中没有任何显示。现在,这里的窍门在哪里? 问题答案: 转到/ etc / default / tomcat6并更改为

  • 您可以在整个web上读到AWT是旧的和不推荐的,而Swing是旧的,但比AWT新,应该尽可能优先于AWT。但是我如何确定什么时候可以用它的摆动挂件替换AWT组件呢?web中的几个示例仍然使用AWT组件,其中可以使用Swing。那么有没有一个明确的建议,从AWT中使用什么,什么不使用?我知道,当我使用官方不推荐的组件时,java编译器会给出一个简短的说明,例如: 将产生如下警告: 换句话说:及其子包

  • 问题内容: 在下面的代码中,我试图使h1元素具有最高利润。当我在css中将位置设置为inline时,未显示上边距。但是,当我将其更改为inline-block时,它确实可以。我想知道是否有人可以解释为什么会这样。谢谢。 这是我的HTML: 这是CSS 问题答案: CSS2规范的9.2.4节规定: inline-block 此值使元素生成一个 内联级块容器 。内联块的内部被格式化为块框,元素本身被格

  • 问题内容: 我有一个带有JFrame的Java程序 我正在使用绝对定位 这是我的主要功能 当我运行程序时,我尝试调整其大小并使窗口变小,但我无法 当我尝试使窗口变大时,它可以正常工作,我基本上会跳过该功能 我已经看过了,显然这已经发生过 这是一个已知的错误? 如果是这样,我听说我可以制造一个Window Listener,当我尝试它时,我实现了WindowListener所需的功能,但找不到任何解

  • 我启动我的应用程序与。但它不能找到类在我的依赖jar和给我.然后我在代码中打印类路径,发现依赖JarPath不在我的类路径上。然后我在我的jar的MANIFEST. MF中的头中添加依赖JarPath,并用启动我的应用程序,它成功了。 所以我的问题是,当使用和时,会生效吗?如果它没有生效,除了设置头之外,我如何在运行jar时设置类路径?

  • 问题内容: 我知道如何在以下代码中使用INDEX。而且我知道如何使用 外键 和 主键 。 但是我发现使用KEY而不是INDEX的代码如下。 我在官方的MySQL页面上找不到任何解释。谁能告诉我KEY和INDEX有什么区别? 我看到的唯一区别是,当我使用时,我需要重复该单词,例如 。 问题答案: 没有区别 它们是同义词。 从该手动输入: 通常是的同义词。也可以像在列定义中给定键属性一样指定键属性。这