JavaFX auto-scroll down scrollpane

后端 未结 6 937
轻奢々
轻奢々 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:30

    You can bind the ScrollPane vvalue property with the heightProperty of the inner container. For example, if you have a VBox in your ScrollPane:

    scrollPane.vvalueProperty().bind(vBox.heightProperty());
    

提交回复
热议问题