summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/t3/Cell.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/tutorials/t3/Cell.qml')
-rw-r--r--examples/declarative/tutorials/t3/Cell.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/declarative/tutorials/t3/Cell.qml b/examples/declarative/tutorials/t3/Cell.qml
new file mode 100644
index 0000000..5d6ff52
--- /dev/null
+++ b/examples/declarative/tutorials/t3/Cell.qml
@@ -0,0 +1,7 @@
+<Item id="CellContainer" width="40" height="25">
+ <properties>
+ <Property name="color"/>
+ </properties>
+ <Rect anchors.fill="{parent}" color="{CellContainer.color}"/>
+ <MouseRegion anchors.fill="{parent}" onClicked="HelloText.color = CellContainer.color" />
+</Item>