如何将 parent AnchorPane 匹配到 javafx 中的 HBox

How to match parent AnchorPane to HBox in javafx

我正在使用 JavaFX 并且我有 HBox parent 和 AnchorPane child,所以当我调整 parent 的大小时, child 不调整大小,我想让 AnchorPane 填充 parent(就像 android 中的 match_parent)。

您应该在 AnchorPane 中设置 HGrow = ALWAYS。

<AnchorPane maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" HBox.hgrow="ALWAYS" />