使滚动条在TextArea JavaFX中从上到下滚动
Make scroll bar scroll from top to bottom in TextArea JavaFX
如何让 TextArea 从上到下而不是从左到右滚动?我不知道如何实现它。
textArea.setWrapText(true);
If a run of text exceeds the width of the TextArea, then this variable
indicates whether the text should wrap onto another line
当您有许多行在当前视图高度下无法全部显示时,您可以使用垂直滚动,并且可以上下滚动。
如何让 TextArea 从上到下而不是从左到右滚动?我不知道如何实现它。
textArea.setWrapText(true);
If a run of text exceeds the width of the TextArea, then this variable indicates whether the text should wrap onto another line
当您有许多行在当前视图高度下无法全部显示时,您可以使用垂直滚动,并且可以上下滚动。