gpt4 book ai didi

kotlin - 如何在Tornadofx的ImageView中加载固定大小的图像

转载 作者:行者123 更新时间:2023-12-02 13:34:53 24 4
gpt4 key购买 nike

当我使用带有tornadofx的JavaFX,Image时,一切正常,但不是异步的。

imageview {
image = Image(url, 200.0, 200.0, false, true)
}

所以我想用本地的tornadofx方法来做,但是我也想调整它的大小。
imageview(url, 200.0, 200.0, false, true)

这个构造函数不存在,但是我不能真正调整它的大小,因为没有可以使用的setHeight和setWidth方法(至少我看不到它们)。

最佳答案

我是这样解决的,但是我不确定这是否是最好的方法。

setPrefSize(100.0, 100.0)
imageview(url) {
fitHeightProperty().bind(parent.prefHeight(100.0).toProperty())
fitWidthProperty().bind(parent.prefWidth(100.0).toProperty())
}

关于kotlin - 如何在Tornadofx的ImageView中加载固定大小的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58476207/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com