前端之家收集整理的这篇文章主要介绍了
JavaFX – 使ScrollPane自动滚动,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在ScrollPane中有一个Label.我正在循环中更新
标签(在另一个线程中).我如何更新ScrollPane,使其向下滚动(不是侧身,这将手动完成),如果
用户没有将其保持在某个位置?它有一个二传手吗?
要将ScrollPane设置为
底部,请
自动设置ScrollPane元素的vvalue,如下所示:
@FXML private ScrollPane scroll; //this must match the fx:id of the ScrollPane element
scroll.setVvalue(1.0); //1.0 means 100% at the bottom
原文链接:https://www.f2er.com/java/127404.html