Files
gcs-nf/opmap/mapwidget/test.qml
T

41 lines
641 B
QML
Raw Normal View History

2020-04-29 16:21:03 +08:00
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}
}
##^##*/