diff options
author | Bea Lam <bea.lam@nokia.com> | 2010-04-28 03:56:45 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2010-04-28 03:56:45 (GMT) |
commit | bfe1ed3d92cc68e9ceeaa38803b77ed17cf93263 (patch) | |
tree | 636870c6a9b132590c1d083afec6720074b83d37 /doc/src/snippets/declarative/qtbinding/contextproperties/main.qml | |
parent | 7a89d94c208347635fa0ad5c4da9bca4a9398f5c (diff) | |
download | Qt-bfe1ed3d92cc68e9ceeaa38803b77ed17cf93263.zip Qt-bfe1ed3d92cc68e9ceeaa38803b77ed17cf93263.tar.gz Qt-bfe1ed3d92cc68e9ceeaa38803b77ed17cf93263.tar.bz2 |
Move snippets to correct location
Diffstat (limited to 'doc/src/snippets/declarative/qtbinding/contextproperties/main.qml')
-rw-r--r-- | doc/src/snippets/declarative/qtbinding/contextproperties/main.qml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/src/snippets/declarative/qtbinding/contextproperties/main.qml b/doc/src/snippets/declarative/qtbinding/contextproperties/main.qml new file mode 100644 index 0000000..1053f73 --- /dev/null +++ b/doc/src/snippets/declarative/qtbinding/contextproperties/main.qml @@ -0,0 +1,15 @@ +//![0] +import Qt 4.7 + +Rectangle { + width: 300 + height: 300 + + color: backgroundColor + + Text { + anchors.centerIn: parent + text: "Hello Yellow World!" + } +} +//![0] |