overte/interface/resources/qml/OverlayWindowTest.qml
2017-11-04 15:14:06 -07:00

18 lines
282 B
QML

import QtQuick 2.5
import QtQuick.Controls 1.4
Rectangle {
width: 100
height: 100
color: "white"
Rectangle {
width: 10
height: 10
color: "red"
}
Label {
text: OverlayWindowTestString
anchors.centerIn: parent
}
}