add first qml files

This commit is contained in:
Felix Hammer
2015-01-06 00:43:58 +01:00
parent fa4df857e4
commit 6a8c159450
10 changed files with 215 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
import QtQuick 2.4
import QtQuick.Controls 1.3
import QtQuick.Layouts 1.1
Item {
width: 640
height: 480
property alias button3: button3
property alias button2: button2
property alias button1: button1
RowLayout {
anchors.centerIn: parent
Button {
id: button1
text: qsTr("Press Me 1")
}
Button {
id: button2
text: qsTr("Press Me 2")
}
Button {
id: button3
text: qsTr("Press Me 3")
}
}
}