我有一个带有框布局的JPanel(a),所有组件都垂直堆放在它上面。 其中,我有一个带水平框布局的JPanel(b)。对于那个JPanel(b),我添加了刚性区域,JPanel和JTextArea。
我想要的是,每次JTextArea由于自动换行而扩展时,JPanel(b)会增加其高度。但是,由于我的JPanel在开始时具有单行的高度。 JTextArea不会展开,因为所有空格都已填满。
有没有办法解决这个问题,另类呢?
它不一定是JPanel和JTextArea,只是可以包含组件的东西和可以包含多行的JTextComponent。
class Question extends JPanel
{
public JPanel questionArea;
public JTextArea number, question;
public Question(Page page)
{
setSize(new Dimension(556, 100));
setBackground(Color.PINK);
setLayout(new BoxLayout(this, BoxLayout.PAGE_AXIS));
Border in = BorderFactory.createDashedBorder(Color.BLACK);
Border out = BorderFactory.createMatteBorder(0, 0, 10, 0, Color.WHITE);
setBorder(BorderFactory.createCompoundBorder(out, in));
questionArea = new JPanel();
questionArea.setPreferredSize(new Dimension(556, 32));
questionArea.setBackground(Color.YELLOW);
questionArea.setLayout(new BoxLayout(questionArea, BoxLayout.LINE_AXIS));
out = BorderFactory.createMatteBorder(0, 0, 8, 0, Color.WHITE);
setBorder(BorderFactory.createCompoundBorder(out, in));
number = new JTextArea();
number.setPreferredSize(new Dimension(25, 32));
number.setBackground(Color.GREEN);
number.setFont(new Font("Arial", Font.BOLD, 15));
number.setText("10.");
number.setEditable(false);
question = new JTextArea();
question.setPreferredSize(new Dimension(494, 32));
question.setBackground(Color.PINK);
question.setFont(new Font("Arial", Font.BOLD, 15));
question.setText("What is the first question?");
questionArea.add(Box.createRigidArea(new Dimension(35, 32)));
questionArea.add(number);
questionArea.add(question);
add(questionArea);
page.editArea.add(this, page.content);
}
}
断裂
class Page extends JPanel
{
public JPanel editArea;
public Box.Filler blank;
public Page(JPanel panel)
{
setLayout(null);
setBounds(92, panel.getPreferredSize().height+40, 794, 1123);
setBackground(Color.WHITE);
editArea = new JPanel();
editArea.setLayout(new BoxLayout(editArea, BoxLayout.PAGE_AXIS));
editArea.setBounds(119, 96, 556, 931);
editArea.setBackground(Color.LIGHT_GRAY);
blank = new Box.Filler(new Dimension(556, -1), new Dimension(556, 931), new Dimension(556, 931));
editArea.add(blank);
add(editArea);
}
}
页面类本身在一个JPanel上,布局为null,不需要代码,对吗?
答案 0 :(得分:0)
我认为水平BoxLayout
正在帮助你。
它将以首选大小显示组件(在实例化时使用getPreferredSize()
),我不相信它会随时为您调整大小。您可能希望将Panel(b)更改为BorderLayout
,并将组件添加到EAST
中的WEST
,JTextArea
和CENTER
。< / p>