我在AnchorPane中有一个ImageView,我想以与AnchorPane调整大小相同的命题调整图像的大小。

有人可以解释我该怎么做吗?

提前谢谢了。

最佳答案

您可以将图像视图的fitWidthfitHeight属性绑定到锚定窗格的宽度和高度:

imageView.fitWidthProperty().bind(anchorPane.widthProperty());
imageView.fitHeightProperty().bind(anchorPane.heightProperty());


如果您还想保留所显示图像的比例,则可以

imageView.setPreserveRatio(true);

关于java - Javafx将ImageView调整为AnchorPane,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49820196/

10-10 22:41