How to disable rendering in QML WebView?
问题 I am currently building an application that makes use of QML WebView ( import QtWebKit 3.0 ). The users need to resize the WebView very often (I am using a QML SplitView ), however this leads to the UI to lag extremely whenever the app window is resized. Is there any way to prevent this? 回答1: Instead of changing the width and height properties change scale property of the WebView . At beginning of the resize save initial values of width and height . On resize don't change width and height .