Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.36 KB | None | 0 0
  1. import QtQuick 2.0
  2. import QtQuick.Layouts 1.3
  3. import QtQuick.Controls 2.3
  4.  
  5. Rectangle {
  6.     id: rectangle
  7.  
  8.     TextField {
  9.         id: textField
  10.         x: 220
  11.         y: 104
  12.         text: qsTr("Text Field")
  13.         echoMode: 0
  14.     }
  15.  
  16.     TextField {
  17.         id: textField1
  18.         x: 220
  19.         y: 220
  20.         text: qsTr("Text Field")
  21.     }
  22.  
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement