changeset 12854 | 28cb18c5e712 |
child 12858 | 0c6fb706f747 |
child 14164 | 745c73e0e644 |
12853:a9d105dc5c95 | 12854:28cb18c5e712 |
---|---|
1 import QtQuick 2.7 |
|
2 import QtQuick.Controls 2.0 |
|
3 import QtQuick.Layouts 1.3 |
|
4 |
|
5 Item { |
|
6 property alias textField1: textField1 |
|
7 property alias button1: button1 |
|
8 |
|
9 RowLayout { |
|
10 anchors.horizontalCenter: parent.horizontalCenter |
|
11 anchors.topMargin: 20 |
|
12 anchors.top: parent.top |
|
13 |
|
14 TextField { |
|
15 id: textField1 |
|
16 placeholderText: qsTr("Text Field") |
|
17 } |
|
18 |
|
19 Button { |
|
20 id: button1 |
|
21 text: qsTr("Press Me") |
|
22 } |
|
23 } |
|
24 } |