javafx的TextArea组件怎么滚动视图到最下面
时间: 2024-02-22 09:57:37 浏览: 94
您可以使用 `scrollTo()` 方法将视图滚动到 `TextArea` 的末尾。以下是一个示例代码:
```java
TextArea textArea = new TextArea();
textArea.appendText("Hello World\n");
textArea.appendText("This is a test\n");
textArea.appendText("Scroll to bottom\n");
textArea.scrollTo(textArea.getBottom());
```
`scrollTo()` 方法接受一个 `double` 类型的参数,表示要滚动到的位置。在这个例子中,我们将其设置为 `TextArea` 的底部,这样就可以将视图滚动到最下面。
阅读全文