我试图将一个属性绑定到舞台的值,但是如果我想获取该属性的值,它只会给我NaN
。
舞台:
stage = primaryStage;
Parent root = FXMLLoader.load(getClass().getResource("graphics/sample.fxml"));
stage.setScene(new Scene(root, 500, 600));
stage.initStyle(StageStyle.UNDECORATED);
stage.show();
stage.setX(Screen.getPrimary().getVisualBounds().getWidth()-stage.getWidth());
stage.setY(Screen.getPrimary().getVisualBounds().getHeight()-stage.getHeight());
我如何尝试:
anchorPane.prefWidthProperty().bind(Main.getStageObj().widthProperty());
anchorPane.prefHeightProperty().bind(Main.getStageObj().heightProperty());
我想获取anchorPane
的高度或宽度。