如果我像这样使用带有MigLayout的JTextArea:
MigLayout thisLayout = new MigLayout("", "[][grow]", "[]20[]");
this.setLayout(thisLayout);
{
jLabel1 = new JLabel();
this.add(jLabel1, "cell 0 0");
jLabel1.setText("jLabel1");
}
{
jTextArea1 = new JTextArea();
this.add(jTextArea1, "cell 0 1 2 1,growx");
jTextArea1.setText("jTextArea1");
jTextArea1.setLineWrap(false);
}
然后,当调整窗口大小时,JTextArea会完美地增长和缩小。当我将linewrap设置为true时,当我再次缩小窗口时,JTextArea不会缩小。我非常感谢任何帮助。感谢
马塞尔
答案 0 :(得分:18)
我刚刚发现可以通过更改行
来解决这个问题this.add(jTextArea1, "cell 0 1 2 1,growx");
到
this.add(jTextArea1, "cell 0 1 2 1,growx, wmin 10");
并且不需要额外的面板。设置明确的最小尺寸就是诀窍。
说明:请参阅MiGLayout白皮书中有关填充的部分下的说明:
答案 1 :(得分:8)
这是因为JTextArea
会在调整大小时自动设置最小宽度。有关详细信息,请访问MigLayout forum。粗略地总结一下,创建一个包含JTextArea
的面板,让您进一步控制调整大小行为。以下是上述论坛帖子的摘录:
static class MyPanel extends JPanel implements Scrollable
{
MyPanel(LayoutManager layout)
{
super(layout);
}
public Dimension getPreferredScrollableViewportSize()
{
return getPreferredSize();
}
public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction)
{
return 0;
}
public boolean getScrollableTracksViewportHeight()
{
return false;
}
public boolean getScrollableTracksViewportWidth()
{
return true;
}
public int getScrollableUnitIncrement(Rectangle visibleRect, int orientation, int direction)
{
return 0;
}
}
然后,无论您在何处使用JTextArea,请使用包含文本区域的面板:
MigLayout thisLayout = new MigLayout("", "[][grow]", "[]20[]");
this.setLayout(thisLayout);
{
jLabel1 = new JLabel();
this.add(jLabel1, "cell 0 0");
jLabel1.setText("jLabel1");
}
{
JPanel textAreaPanel = new MyPanel(new MigLayout("wrap", "[grow,fill]", "[]"));
jTextArea1 = new JTextArea();
textAreaPanel.add(jTextArea1);
this.add(textAreaPanel, "cell 0 1 2 1,grow,wmin 10");
jTextArea1.setText("jTextArea1");
jTextArea1.setLineWrap(false);
}