import QtQuick import QtQuick.Layouts import QtQuick.Controls ApplicationWindow { id: addmitarbeiter title: qsTr("Objekt - Neuer Mitarbeiter") ColumnLayout { anchors.fill: parent anchors.margins: 10 Label { text: qsTr("Neuer Mitarbeiter") Layout.alignment: Qt.AlignHCenter font.pixelSize: 35 } GridLayout { Layout.fillWidth: true columns: 2 rowSpacing: 4 columnSpacing: 6 Label { text: qsTr("Eingesetzter Mitarbeiter") Layout.alignment: Qt.AlignRight } TextField { Layout.fillWidth: true } Label { text: qsTr("Lohn Mitarbeiter pro Stunde") Layout.alignment: Qt.AlignRight } TextField { Layout.fillWidth: true } Label { text: qsTr("Einsatzdauer") Layout.alignment: Qt.AlignRight } TextField { Layout.fillWidth: true } Label { text: qsTr("Reinigungstage") Layout.alignment: Qt.AlignRight } TextField { Layout.fillWidth: true } Label { text: qsTr("Tätigkeiten") Layout.alignment: Qt.AlignRight } TextField { Layout.fillWidth: true } Label { text: qsTr("Ertrag") Layout.alignment: Qt.AlignRight } TextField { Layout.fillWidth: true } } RowLayout { Layout.fillWidth: true spacing: 5 Item { Layout.fillWidth: true } Button { text: qsTr("Abbrechen") } Button { text: qsTr("Hinzufügen") } } } }