我有这个代码(简化/缩短/伪):
StackPane background = new StackPane();
GridPane overlay = new GridPane();
BorderPane pane = new BorderPane(background);
pane.setLeft(overlay);
我希望背景/堆栈窗格覆盖整个窗口(在背景中,惊喜),并且覆盖/网格覆盖背景的一部分。问题是,当我将 ImageView 添加到 StackPane 时,只显示图像而没有其他内容。叠加层不可见。我尝试过overlay.toFront、overlay.preferredHeight 和background.toBack,但没有成功。