qmlfrontend/Page1Form.ui.qml
branchqmlfrontend
changeset 12860 1b2b84315d27
parent 12859 28cb18c5e712
child 12863 0c6fb706f747
child 14148 745c73e0e644
equal deleted inserted replaced
11848:01f88c3b7b66 12860:1b2b84315d27
       
     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 }