qmlfrontend/Page1Form.ui.qml
branchqmlfrontend
changeset 12858 0c6fb706f747
parent 12854 28cb18c5e712
child 12861 488782d9aba9
--- a/qmlfrontend/Page1Form.ui.qml	Fri Dec 22 23:59:03 2017 +0100
+++ b/qmlfrontend/Page1Form.ui.qml	Sun Dec 24 00:44:16 2017 +0100
@@ -3,7 +3,6 @@
 import QtQuick.Layouts 1.3
 
 Item {
-    property alias textField1: textField1
     property alias button1: button1
 
     RowLayout {
@@ -11,14 +10,9 @@
         anchors.topMargin: 20
         anchors.top: parent.top
 
-        TextField {
-            id: textField1
-            placeholderText: qsTr("Text Field")
-        }
-
         Button {
             id: button1
-            text: qsTr("Press Me")
+            text: qsTr("Run")
         }
     }
 }