mp/ Example of setting QML property from C++

This commit is contained in:
Tal Lancaster
2017-01-18 16:01:46 -07:00
parent c98a963ae0
commit 7fdb2ff111
4 changed files with 67 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
import QtQuick 2.0
Item {
width: 100; height: 100
Rectangle {
anchors.fill: parent
objectName: "rect"
}
}