我有这段代码(simplified / shortend / pseudo):
StackPane background = new StackPane();
GridPane overlay = new GridPane();
BorderPane pane = new BorderPane(background);
pane.setLeft(overlay);
我希望背景/堆栈窗格覆盖整个窗口(在后台,惊喜),以及覆盖/网格以覆盖背景的一部分。问题是,当我向StackPane添加ImageView时,图像显示而没有其他内容。叠加层不可见。我尝试过overlay.toFront,overlay.preferredHeight和background.toBack,但没有成功。
答案 0 :(得分:1)
尝试将边框窗格放入堆栈窗格,而不是相反,然后确保将图像添加为堆栈窗格的子窗口的第一个元素。
GridPane overlay = new GridPane();
BorderPane pane = new BorderPane();
pane.setLeft(overlay);
StackPane background = new StackPane(pane);
// ...
ImageView imageView = ... ;
background.getChildren().add(0, imageView);
// ...
scene.setRoot(background);
或者,只需使用BorderPane
作为根,并以通常的方式添加节点。然后,在外部样式表中,执行
.root {
-fx-background-image: url(relative/path/to/image);
}