author | unc0rr |
Sun, 24 Dec 2017 00:44:16 +0100 | |
branch | qmlfrontend |
changeset 12858 | 0c6fb706f747 |
parent 12854 | 28cb18c5e712 |
child 12861 | 488782d9aba9 |
permissions | -rw-r--r-- |
12854 | 1 |
import QtQuick 2.7 |
2 |
import QtQuick.Controls 2.0 |
|
3 |
import QtQuick.Layouts 1.3 |
|
4 |
||
5 |
Item { |
|
6 |
property alias button1: button1 |
|
7 |
||
8 |
RowLayout { |
|
9 |
anchors.horizontalCenter: parent.horizontalCenter |
|
10 |
anchors.topMargin: 20 |
|
11 |
anchors.top: parent.top |
|
12 |
||
13 |
Button { |
|
14 |
id: button1 |
|
12858
0c6fb706f747
More refactoring in attempt to move away from frontlib
unc0rr
parents:
12854
diff
changeset
|
15 |
text: qsTr("Run") |
12854 | 16 |
} |
17 |
} |
|
18 |
} |