JavaFX auto-scroll down scrollpane

后端 未结 6 935
轻奢々
轻奢々 2020-12-10 22:12

Is there any way of auto scroll down a ScrollPane control when it content\'s height increases ? For example, I have a TitledPane on the bottom of the screen (inside a Scroll

6条回答
  •  自闭症患者
    2020-12-10 22:23

    You can add a listener to the TitledPane's height property like that:

    titledPane.heightProperty().addListener((observable, oldValue, newValue) -> 
           vvalueProperty().set(newValue.doubleValue()));
    

提交回复
热议问题