Frame QML Type

Visual frame for a logical group of controls. 更多...

导入语句: import QtQuick.Controls 2.2
Since: Qt 5.7
继承:

Pane

继承者:

GroupBox

详细描述

Frame is used to layout a logical group of controls together within a visual frame. Frame does not provide a layout of its own, but requires you to position its contents, for instance by creating a RowLayout ColumnLayout .

Items declared as children of a Frame are automatically parented to the Frame's contentItem . Items created dynamically need to be explicitly parented to the contentItem.

If only a single item is used within a Frame, it will resize to fit the implicit size of its contained item. This makes it particularly suitable for use together with layouts.

Frame {
    ColumnLayout {
        anchors.fill: parent
        CheckBox { text: qsTr("E-mail") }
        CheckBox { text: qsTr("Calendar") }
        CheckBox { text: qsTr("Contacts") }
    }
}
					

另请参阅 Customizing Frame and 容器控件 .