我想在我的文本区域添加滚动条,我知道添加滚动条的简单代码,但是当我将滚动条的代码放入时,整个文本区域消失了!
有什么问题?
这是我的代码:
private JFrame frame;
private JTextArea textarea;
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
SmsForm window = new SmsForm();
window.frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
public SmsForm() {
initialize();
}
private void initialize() {
frame = new JFrame("???");
frame.setBounds(100, 100, 450, 300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.getContentPane().setLayout(null);
JPanel groupBoxEncryption = new JPanel();
final JTextArea textarea=new JTextArea();
textarea.setBounds(50, 100, 300, 100);
frame.getContentPane().add(textarea);
textarea.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
JScrollPane scrollPanePlain = new JScrollPane(textarea);
groupBoxEncryption.add(scrollPanePlain);
scrollPanePlain.setBounds(100, 30, 250, 100);
scrollPanePlain.setVisible(true);
答案 0 :(得分:2)
有很多问题
JPanel
groupBoxEncryption
添加到应用JFrame
textarea
添加到框架中 - 组件只能有一个父组件null
布局没有大小组件 - 忘记不是布局管理器。 JPanel
默认使用FlowLayout
,因此您需要覆盖面板getPreferredSize
的{{1}}。更好的是使用自动调整组件大小的groupBoxEncryption
等布局管理器实施例
GridLayout
答案 1 :(得分:2)