53 lines
782 B
QML
53 lines
782 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
Label
|
|
{
|
|
text: qsTr("Geburtsname")
|
|
}
|
|
TextField
|
|
{
|
|
id: birthname
|
|
Layout.fillWidth: true
|
|
|
|
|
|
}
|
|
Label
|
|
{
|
|
text: qsTr("Geburtsdatum")
|
|
}
|
|
TextField
|
|
{
|
|
id: birthday
|
|
Layout.fillWidth: true
|
|
placeholderText: qsTr("TT.MM.JJJJ")
|
|
validator: RegularExpressionValidator
|
|
|
|
{
|
|
regularExpression: /((^|)(0[1-9]{1}|[1-2]{1}[0-9]{1}|3[0-1]))\.((^|)(0[1-9]{1}|1[0-2]{1}))\.((^|)(196[0-9]{1}|19[7-9]{1}[0-9]{1}|20[0-9]{2}))/
|
|
}
|
|
}
|
|
Label
|
|
{
|
|
text: qsTr("Geburtsort")
|
|
}
|
|
TextField
|
|
{
|
|
id: placeofbirth
|
|
Layout.fillWidth: true
|
|
|
|
}
|
|
Label
|
|
{
|
|
text: qsTr("Geschlecht")
|
|
}
|
|
|
|
ComboBox
|
|
{
|
|
id: gender
|
|
Layout.fillWidth: true
|
|
editable: false
|
|
model: [qsTr("Mann"), qsTr("Frau"), qsTr("Divers")]
|
|
}
|