<div dir="ltr"><span style="font-size:12.8px">Hello,</span><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">I am new to PyQt and having trouble to include QML-Code into an python application.</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">The QML-File (main.qml) I can build in a project in QtCreator (a Qt Quick Application was used to create the project).</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><div>import QtQuick 2.5</div><div>import QtQuick.Controls 1.4</div><div>import QtQuick.Dialogs 1.2</div><div>import QtQml.Models 2.1</div><div><br></div><div>ApplicationWindow {</div><div>    visible: true</div><div>    width: 640</div><div>    height: 480</div><div>    title: qsTr("Hello World")</div><div><br></div><div>    menuBar: MenuBar {</div><div>        Menu {</div><div>            title: qsTr("File")</div><div>            MenuItem {</div><div>                text: qsTr("&Open")</div><div>                onTriggered: console.log("Open action triggered");</div><div>            }</div><div>            MenuItem {</div><div>                text: qsTr("Exit")</div><div>                onTriggered: Qt.quit();</div><div>            }</div><div>        }</div><div>    }</div><div><br></div><div>    MainForm {</div><div>        id: mainForm1</div><div>        anchors.fill: parent</div><div><br></div><div>        SplitView {</div><div>            id: splitView1</div><div>            width: 100</div><div>            anchors.left: parent.left</div><div>            anchors.leftMargin: 36</div><div>            anchors.bottom: parent.bottom</div><div>            anchors.bottomMargin: 8</div><div>            anchors.top: parent.top</div><div>            anchors.topMargin: 8</div><div>            orientation: Qt.Vertical</div><div><br></div><div><br></div><div>            Button {</div><div>                id: btn_welcome</div><div>                x: 49</div><div>                y: 21</div><div>                text: qsTr("Welcome")</div><div>            }</div><div><br></div><div>            Button {</div><div>                id: btn_database</div><div>                x: 49</div><div>                y: 50</div><div>                text: qsTr("Database")</div><div>            }</div><div><br></div><div>            MouseArea {</div><div>                id: mouseArea1</div><div>                x: 0</div><div>                y: 191</div><div>                width: 100</div><div>                height: 100</div><div>            }</div><div>        }</div><div>    }</div><div>}</div></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">It results in the following window:</div><div style="font-size:12.8px"><img src="cid:ii_1530fb7a3e1f8292" alt="Inline-Bild 1" width="412" height="329" class="" tabindex="0"><br></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">To create the application in Python I tried to use QGuiApplication and  QQmlApplicationEngine. </div><div style="font-size:12.8px">main.py and main.qml are located in the same directory:</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px"><div>import sys</div><div>from PyQt5.QtQml import QQmlApplicationEngine</div><div>from PyQt5.QtGui import QGuiApplication</div><div><br></div><div>if __name__ == '__main__':</div><div>    app = QGuiApplication(sys.argv)</div><div>    engine = QQmlApplicationEngine("main.qml")</div><div>    print(engine)</div><div>    sys.exit(app.exec_())</div></div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">The print()-statement is never executed, no window is appearing.</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">What did I miss?</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">Thanks in advance</div><div style="font-size:12.8px"><br></div><div style="font-size:12.8px">Daniel</div></div>