import QtQuick import QtQuick.Controls.Basic Window { id: _app width: 640 height: 480 visible: true title: "" flags: Qt.Window |Qt.FramelessWindowHint color: "#00000000" Rectangle { width: 600 height: 440 anchors.centerIn: parent Row { Button { text: "Min" onClicked: function() { _app.showMinimized() } } } } }