GroupBox
是 QML 中的一个组件,用于为其内容提供一个带标题的框架。它可以用来组织和区分界面中的相关内容。
以下是 GroupBox
的基本用法:
import QtQuick 2.15
import QtQuick.Controls 2.15
ApplicationWindow {
visible: true
width: 640
height: 480
GroupBox {
title: "User Information"
width: 300
height: 200
anchors.centerIn: parent
Column {
anchors.fill: parent
anchors.margins: 10
spacing: 10
Label {
text: "Name:"
}
TextField {
placeholderText: "Enter your name"
}
Label {
text: "Age:"
}
TextField {
placeholderText: "Enter your age"
}
}
}
}
在这个例子中,我们创建了一个标题为 “User Information” 的 GroupBox
。它包含一个 Column