📜  textarea java代码示例中的滚动条

📅  最后修改于: 2022-03-11 14:52:28.100000             🧑  作者: Mango

代码示例1
textArea = new JTextArea();
scroll = new JScrollPane(textArea);
//this.add(textArea); // get rid of this
this.add(scroll);