gpt4 book ai didi

java - 让 JTextPane 根据内容调整高度

转载 作者:搜寻专家 更新时间:2023-11-01 03:56:19 24 4
gpt4 key购买 nike

我正在尝试让 JTextPane 根据我输入的任何内容调整其高度。我所能做的就是使用 Dimension 以像素为单位设置固定高度。

如何使 JTextPane 折叠/展开以适合内容?

我可能会补充说,我在已添加到 JScrollPaneGridBagLayout 编辑的 JPanel 中使用它。

最佳答案

我不知道有什么直接的方法可以做到这一点,但这可能会给你一些想法:

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

public class TextPanePerfectSize extends JFrame
{
JTextField textField;
JTextPane textPane;

public TextPanePerfectSize()
{
textField = new JTextField(20);
textField.setText("add text");
getContentPane().add(textField, BorderLayout.NORTH );
textField.addActionListener( new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
try
{
Document doc = textPane.getDocument();
doc.insertString(doc.getLength(), " " + textField.getText(), null);
textField.setText("");
Dimension d = textPane.getPreferredSize();
Rectangle r = textPane.modelToView( textPane.getDocument().getLength() );
d.height = r.y + r.height;
textPane.setPreferredSize( d );
getContentPane().validate();
// pack();
}
catch(Exception e2) {}
}
});

JLabel label = new JLabel("Hit Enter to Add Text to Text Pane");
getContentPane().add(label);

JPanel south = new JPanel();
textPane = new JTextPane();
textPane.setText("Some text");
textPane.setEditable( false );
textPane.setPreferredSize( new Dimension(120, 23) );

south.add( textPane );
getContentPane().add(south, BorderLayout.SOUTH);
}

public static void main(String[] args)
{
JFrame frame = new TextPanePerfectSize();
frame.setSize(200, 200);
frame.setLocationRelativeTo( null );
frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
frame.setVisible(true);
}
}

关于java - 让 JTextPane 根据内容调整高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1126584/

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