mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-22 18:52:30 +01:00
24 lines
408 B
QML
24 lines
408 B
QML
import QtQuick 2.6
|
|
import QtQuick.Window 2.2
|
|
import QtCanvas3D 1.1
|
|
import QtQuick.Controls 2.1
|
|
|
|
|
|
|
|
Window {
|
|
id: rectangle
|
|
color: "#eeeeee"
|
|
visible: true
|
|
width: 1366
|
|
height: 768
|
|
|
|
Button {
|
|
id: button
|
|
text: qsTr("Close")
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
onClicked: Qt.quit();
|
|
}
|
|
|
|
}
|