我可以通过minX
获取scrollView.getViewportBounds().getMinX()
视口范围,但我该如何设置呢?
我认为可以帮助解决此问题的解决方案是:JavaFX How to scroll ScrollPane to have node in the middle of view port?
答案 0 :(得分:1)
你做不到。 getViewportBounds()
返回一个不可变的Bounds
对象。
我猜你想限制滚动窗格滚动到哪里?然后,您需要使用ScrollPane的hmax
,hmin
,hvalue
和vmax
,vmin
,vvalue
属性。