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