import QtQuick import QtQuick.Window Window { width: 640 height: 480 visible: true title: qsTr("Hello World") Window { width: 800 height: 800 visible: true // Doesn't make a difference if this is not set. transientParent: null } }