1
我有一個BorderPane和一個AnchorPane佈局。如何自動調整Borderpane的內容?
當我試圖將AnchorPane插入到BorderPane中,並且我最大化或最小化BorderPane時,AnchorPane不會根據其父(BorderPane)調整自身大小。
我嘗試將AnchorPane放到BorderPane的中心,並使其可自動更改。但它不工作。
parent.setCenter(anchorPane);
anchorPane.autoresize();
如何設置AnchorPane及其BorderPane家長,讓通過調整父兒童調整自身的大小?