summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/declarative/content.qml
blob: 1e01b29962db9e7282d814cdd7858d946d2f0bbc (plain)
1
2
3
4
5
6
7
8
9
import Qt 4.6

Rect {
    width: 200; height: 100; color: "lightgray"
    GroupBox {
        Text { text: "First Item" }
        Text { text: "Second Item" }
    }
}