如何在调整 ScrollPane 大小时增长 ScrollPane 包裹的 FlowPane?

How to grow the FlowPane wrapped by ScrollPane while resizing the ScrollPane?

我有一个 ScrollPane,里面有一个 FlowPane。当我通过拖动边缘调整 window 大小时,FlowPane 不会增长!它保持固定大小。如何在鼠标展开 ScrollPane 时调整 FlowPane 的大小?

我试了很多方法,但是没有运气! 这是我的最简单形式的 fxml 代码:

<ScrollPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/11.0.1">
   <content>
      <FlowPane prefHeight="411.0" prefWidth="613.0" style="-fx-background-color: green;" />
   </content>
</ScrollPane>

答案很简单。但是不知道为什么没有人回答呢。经过几个小时的测试,我找到了解决方案。如果其他人有同样的问题,我会分享答案。

          <ScrollPane fitToHeight="true" fitToWidth="true" hbarPolicy="ALWAYS" prefHeight="670.0" prefWidth="434.0" vbarPolicy="ALWAYS" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="6.0" AnchorPane.topAnchor="0.0">