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

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