41 lines
641 B
QML
41 lines
641 B
QML
import QtQuick 2.0
|
|
import QtQuick.Layouts 1.3
|
|
import QtPositioning 5.4
|
|
import QtQuick.Dialogs.qml 1.0
|
|
import QtQuick.Controls 2.3
|
|
|
|
Rectangle {
|
|
TextInput {
|
|
id: textInput
|
|
x: 61
|
|
y: 46
|
|
width: 80
|
|
height: 20
|
|
text: qsTr("Text Input")
|
|
font.pixelSize: 12
|
|
}
|
|
|
|
Rectangle {
|
|
id: rectangle
|
|
x: 61
|
|
y: 95
|
|
width: 200
|
|
height: 200
|
|
color: "#b7ff30"
|
|
}
|
|
|
|
RadioButton {
|
|
id: radioButton
|
|
x: 165
|
|
y: 36
|
|
text: qsTr("Radio Button")
|
|
}
|
|
|
|
}
|
|
|
|
/*##^##
|
|
Designer {
|
|
D{i:0;autoSize:true;height:480;width:640}
|
|
}
|
|
##^##*/
|