import QtQuick import QtQuick.Layouts import QtQuick.Controls RowLayout { ColumnLayout { RowLayout { Label { text: "Firmenname" Layout.alignment: Qt.AlignRight } TextField { } } RowLayout { Label { text: "Street" } TextField { } } RowLayout { Label { text: "PLZ" } ComboBox { } } RowLayout { Label { text: "Ort" } TextField { } } RowLayout { Label { text: "Telefon" } TextField { } } RowLayout { Label { text: "E-Mail" } TextField { } } RowLayout { Label { text: "Homepage" } TextField { } } RowLayout { Label { text: "Geschäftsführer" } TextField { } } RowLayout { Label { text: "USt-IdNr" } TextField { } } } ColumnLayout { RowLayout { Label { text: "Firmenname" Layout.alignment: Qt.AlignRight } TextField { } } RowLayout { Label { text: "Street" } TextField { } } RowLayout { Label { text: "PLZ" } ComboBox { } } RowLayout { Label { text: "Ort" } TextField { } } RowLayout { Label { text: "Telefon" } TextField { } } RowLayout { Label { text: "E-Mail" } TextField { } } RowLayout { Label { text: "Homepage" } TextField { } } RowLayout { Label { text: "Geschäftsführer" } TextField { } } RowLayout { Label { text: "USt-IdNr" } TextField { } } } Item { id: spacer Layout.fillHeight: true } }