QML表单布局

时间:2014-06-04 05:27:13

标签: qt qml

我在我的应用程序中使用QML for UI,现在我想构建一些表单。 这是一个代码:

Window {
    width: 400
    height: 600
    flags: Qt.Dialog
    modality: Qt.ApplicationModal

    GridLayout {
        id: mainLayout
        columns: 2
        rowSpacing: 5
        columnSpacing: 5
        anchors {
            top: parent.top;
            left: parent.left
            right: parent.right
        }

        Label { text: "field1" }
        TextField { id: field1; }

        Label { text: "field2"}
        TextField { id: field2 }
    }
}

如何设置TextFields的宽度?他们中的大多数必须适合右栏中的所有空间;

现在看起来如何:

enter image description here

1 个答案:

答案 0 :(得分:4)

您可以使用放置在GridLayout内的项目的附加属性(请参阅official documentation),因此代码中的更改将如下所示:

...
Label { text: "field1" }
TextField { id: field1; Layout.fillWidth: true;}

Label { text: "field2"}
TextField { id: field2; Layout.fillWidth: true;}
...