QtWebKit QML 模块

Qt WebKit QML

WebKit QML Elements

QtWebKit 模块

The QtWebKit Module has a QML element, WebView for displaying web content from a URL .

Import the QtWebKit module before declaring a WebView 元素:

import QtWebKit 1.0
					
					

Simple Usage

import QtWebKit 1.0
WebView {
    url: "http://www.nokia.com"
    preferredWidth: 490
    preferredHeight: 400
    scale: 0.5
    smooth: false
}
					

另请参阅 WebView Example and QML Web Browser.