我有一个 BorderPane 和一个 AnchorPane 布局。
当我尝试将 AnchorPane 插入 BorderPane 并最大化或最小化 BorderPane 时,AnchorPane 不会根据其父级(BorderPane)调整自身大小。
我尝试将 AnchorPane 放在 BorderPane 的中心,并使其自动调整大小。但它不起作用。
parent.setCenter(anchorPane);
anchorPane.autoresize();
我如何设置 AnchorPane 及其 BorderPane 父级,以便通过调整父级大小来调整子级自身的大小?