This repository has been archived on 2022-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
dasschmalter/Qt-Code/DasSchmalter/main.qml

30 lines
557 B
QML

import QtQuick 2.9
import QtQuick.Window 2.2
import QtQuick.Controls 2.4
Window {
visible: true
width: 640
height: 480
title: qsTr("Hello World")
Page {
id: app
anchors.fill: parent
Button {
id: onOffBt
anchors.centerIn: parent
height: parent.height * 0.5
width: height
text: "on/off"
background: Rectangle {
color: onOffBt.pressed ? "lightgrey":"grey"
radius: height / 2
}
}
}
}