How to resize JavaFX ScrollPane content to fit current size

前端 未结 2 2097
不知归路
不知归路 2020-12-14 05:45

I have a BorderPane with a ScrollPane as the center element. It resizes automatically to fill the screen. Inside the ScrollPane is a <

2条回答
  •  猫巷女王i
    2020-12-14 06:05

    Setting the fitToHeight or fitToWidth attribute through XML or CSS:

    FXML:

    
    

    CSS:

    .my-scroll-pane {
        -fx-fit-to-height: true;
        -fx-fit-to-width: true;
    }
    

提交回复
热议问题