Python3.3的代碼 css
from PyQt5.QtCore import QUrl from PyQt5.QtGui import QGuiApplication from PyQt5.QtQuick import QQuickView def outputString(string): print(string) if __name__ == '__main__': # path = r'test\main.qml' path = 'main.qml' app = QGuiApplication([]) view = QQuickView() view.engine().quit.connect(app.quit) view.setSource(QUrl(path)) view.show() context = view.rootObject() context.sendClicked.connect(outputString) # 鏈接QML文件中的sendClicked信號 app.exec_()QML部分的代碼:
import QtQuick 2.0 Rectangle { id: root width: 320; height: 240 color: "lightgray" signal sendClicked(string str1) // 定義信號 Rectangle { id: rect width: 200; height: 100; border.width: 1 anchors.centerIn: parent Text { id: txt text: "Clicked me" font.pixelSize: 20 anchors.centerIn: rect } } MouseArea { id: mouse_area anchors.fill: rect // 有效區域 onClicked: { parent.sendClicked("Hello, Python3") // 發射信號到Python } } }
運行效果以下: python
QML文件須要保存爲main.qml,不然會出現找不到*.qml文件的問題。 app
經過點擊運行效果圖的白色區域,就能夠在控制檯打印"Hello, Python3"的字符串。 函數
以上代碼若有不明白的,歡迎評論。 ui
另外,若是有哪位知道如何使用PyQt5發送信號到QML的,能夠告訴我一下,謝謝!! code