65 lines
999 B
QML
65 lines
999 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
GridLayout
|
|
{
|
|
id: contactData
|
|
columns: 2
|
|
Label
|
|
{
|
|
text: qsTr("Straße")
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
TextField
|
|
{
|
|
id: street
|
|
Layout.fillWidth: true
|
|
}
|
|
Label
|
|
{
|
|
text: qsTr("PLZ")
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
RowLayout
|
|
{
|
|
ComboBox
|
|
{
|
|
id: postcode
|
|
Layout.fillWidth: true
|
|
}
|
|
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Ort")
|
|
|
|
}
|
|
ComboBox
|
|
{
|
|
id: city
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|
|
Label
|
|
{
|
|
text: qsTr("Telefonnummer")
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
TextField
|
|
{
|
|
id: phonenumber
|
|
Layout.fillWidth: true
|
|
}
|
|
Label
|
|
{
|
|
text: qsTr("E-Mail")
|
|
Layout.alignment: Qt.AlignRight
|
|
}
|
|
TextField
|
|
{
|
|
id: email
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|