gpt4 book ai didi

java - 如何更改 BoxLayout 中元素的大小?

转载 作者:搜寻专家 更新时间:2023-11-01 01:46:44 26 4
gpt4 key购买 nike

我有这门课:

package com.erikbalen.game.rpg;

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;

public class Gui extends JFrame implements ActionListener {

/**
*
*/
private static final long serialVersionUID = -384241835772507459L;
JLabel playerInfo;
JTextField textField;
private final static String newline = "\n";
JTextArea feed;
JScrollPane scrollPane;
Player player;

public Gui() {
super("Erik's RPG");

//setLayout(new FlowLayout());

Container contentPane = this.getContentPane();
contentPane.setLayout(new BoxLayout(contentPane,BoxLayout.PAGE_AXIS));

textField = new JTextField(30);

textField.addActionListener(this);


feed = new JTextArea(15, 30);
feed.setEditable(false);
scrollPane = new JScrollPane(feed);
}

当您运行它时,如果我展开它,它会使 textField 变得非常高,即使我只希望它达到一定高度。我怎么能

最佳答案

BoxLayout 扩展组件直到它们的最大尺寸,JTextField 在返回 Short.Max(或 Integer.Max,忘了)的最大高度时表现不佳。出路是让字段行为:

    @Override
public Dimension getMaximumSize() {
// TODO Auto-generated method stub
Dimension dim = super.getMaximumSize();
dim.height = getPreferredSize().height;
return dim;
}

或者,使用另一个 LayoutManager :-)

关于java - 如何更改 BoxLayout 中元素的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7440631/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com