Я пытался привязать свойство к значению моей стадии, но если я хочу получить значение этого свойства, оно просто дает мне 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
.