JavaFX 2: Making a ScrollPane automatically scroll to the edge after adding content

前端 未结 2 1716
慢半拍i
慢半拍i 2021-02-10 18:22

Using JavaFX 2, I have a basic example of a ScrollPane that contains an HBox of Labels. I want to be able to add a Label to

2条回答
  •  我在风中等你
    2021-02-10 19:22

    In my case I needed to enclose a HBox called labels inside a ScrollPane called msgs and here is the way I handled autoscroll.

    NOTE: The changeListener added to labels HBox is implemented via Lambda syntax(available in JDK8)

    labels.heightProperty().addListener((observable, oldVal, newVal) ->{
            msgs.setVvalue(((Double) newVal).doubleValue());
        });
    

提交回复
热议问题