0
我想編程插入到我的應用程序的單個圖像。該圖像顯示在其AnchorPane中,但問題在於AnchorPane(以及ImageView)似乎卡在窗口的左上角。動態AnchorPane調整
這個AnchorPane是一個ScrollPane的孩子。我希望我的圖像/ AnchorPane對齊到ScrollPane的頂部中心,而不是左上角。 AnchorPane的動態集中可能嗎?
我想編程插入到我的應用程序的單個圖像。該圖像顯示在其AnchorPane中,但問題在於AnchorPane(以及ImageView)似乎卡在窗口的左上角。動態AnchorPane調整
這個AnchorPane是一個ScrollPane的孩子。我希望我的圖像/ AnchorPane對齊到ScrollPane的頂部中心,而不是左上角。 AnchorPane的動態集中可能嗎?
要動態地對中AnchorPane,請將其置於StackPane。
要放置AnchorPane
在StackPane
的頂部中心,呼叫
StackPane.setAlignment(node, Pos.TOP_CENTER)
AnchorPane anchorPane = new AnchorPane();
...
StackPane stackPane = new StackPane();
stack.getChildren().add(anchorPane);
StackPane.setAlignment(anchorPane, Pos.TOP_CENTER);