B)動態內容大小

內容的大小將根據新增的元素而變化,這些元素超過了兩個軸(水平和垂直)中的內容限制,可以通過在檢視中移動來檢視。

import javafx.scene.control.ScrollPane;   //Import the ScrollPane
import javafx.scene.control.ScrollPane.ScrollBarPolicy; //Import the ScrollBarPolicy
import javafx.scene.layout.Pane;

ScrollPane scrollpane;
Pane content = new Pane();  //We will use this Pane as a content

scrollpane = new ScrollPane();  
scrollpane.setPrefSize(300, 300);   //Initialize the size of the ScrollPane
content.setMinSize(300,300); //Here a minimum size is set so that the container can be extended.
scrollpane.setContent(content); // we add the content to the ScrollPane

注意: 這裡我們不需要兩種方法(setFitToWidth / setFitToHeight)。