2018-11-27 21:57:35 +01:00
|
|
|
import QtQuick 2.8
|
|
|
|
import QtQuick.Controls 2.3
|
|
|
|
import QtQuick.Layouts 1.3
|
2015-09-14 23:38:02 +02:00
|
|
|
|
2015-11-22 22:48:22 +01:00
|
|
|
ApplicationWindow {
|
2015-09-14 23:38:02 +02:00
|
|
|
width: 400
|
|
|
|
height: 300
|
|
|
|
title: "SimpleData"
|
2016-04-05 23:28:19 +02:00
|
|
|
|
2015-09-14 23:38:02 +02:00
|
|
|
Component.onCompleted: visible = true
|
|
|
|
|
2015-11-22 22:48:22 +01:00
|
|
|
ColumnLayout {
|
2015-09-14 23:38:02 +02:00
|
|
|
anchors.fill: parent
|
|
|
|
SpinBox { value: qVar1}
|
|
|
|
TextField { text: qVar2}
|
|
|
|
CheckBox { checked: qVar3}
|
2018-11-27 21:57:35 +01:00
|
|
|
SpinBox { value: qVar4 }
|
2015-09-14 23:38:02 +02:00
|
|
|
}
|
|
|
|
}
|