Created
July 9, 2014 13:05
-
-
Save webmaster128/51d5ebcb7646266a426f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import QtQuick 2.2 | |
| import QtQuick.Controls 1.2 | |
| import QtQuick.Layouts 1.1 | |
| Rectangle { | |
| width: 400 | |
| height: 400 | |
| GridLayout { | |
| anchors.fill: parent | |
| columns: 2 | |
| Label { | |
| text: "Name" | |
| } | |
| TextField { | |
| onEditingFinished: organizationEdit.focus = true | |
| } | |
| Label { | |
| text: "Organization" | |
| } | |
| TextField { | |
| id: organizationEdit | |
| onEditingFinished: addressEdit.focus = true | |
| } | |
| Label { | |
| text: "Address" | |
| } | |
| TextField { | |
| id: addressEdit | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment