Java Textarea ScrollPane

后端 未结 4 1827
旧巷少年郎
旧巷少年郎 2021-01-28 23:24

I have created a textarea, and i need a scrollbar applied to the textarea when necessary (when the text gets too long down and it cant be read anymore).

this is the code

4条回答
  •  隐瞒了意图╮
    2021-01-28 23:44

    You added the TextArea to a parent twice (scrollPane and panel). Change your last line to

    panel_1.add(sbrText);
    

提交回复
热议问题