diff options
Diffstat (limited to 'doc/src/snippets/declarative/content.qml')
-rw-r--r-- | doc/src/snippets/declarative/content.qml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/src/snippets/declarative/content.qml b/doc/src/snippets/declarative/content.qml new file mode 100644 index 0000000..fb03ced --- /dev/null +++ b/doc/src/snippets/declarative/content.qml @@ -0,0 +1,9 @@ +import Qt 4.6 + +Rectangle { + width: 200; height: 100; color: "lightgray" + GroupBox { + Text { text: "First Item" } + Text { text: "Second Item" } + } +} |