正如标题所说,我正在使用 StackPane 来堆叠我的 AnchorPanes( AnchorPaneName.setFront()
)。我想知道哪个 AnchorPane 位于顶部/前面。是否有可能获得前面的 AnchorPane?
最佳答案
前面的将是父子列表中的最后一项,即调用
getChildren().get(getChildren().size()-1)
在父级(
StackPane
,如果我正确理解您的问题)。关于JavaFX StackPane 在前面获取项目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/40552547/