Skip to content

Instantly share code, notes, and snippets.

@webmaster128
Created July 9, 2014 13:05
Show Gist options
  • Select an option

  • Save webmaster128/51d5ebcb7646266a426f to your computer and use it in GitHub Desktop.

Select an option

Save webmaster128/51d5ebcb7646266a426f to your computer and use it in GitHub Desktop.
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