Qml异步加载图片 发表于 2019-02-13 当图片很大时,加载图片可能导致UI线程的阻塞,为了确保图片在加载过程中不会阻塞UI线程,将Image元素的’asynchronous’设置为true 1234Image { asynchronous: true source: "test.png"}