Tag: C++
Posted by Prashanth Udupa Posted on March 10, 2017
Posted in Technical
Tagged C++, property binding, qt
In QML we have this super-cool feature that allows us to bind the property value of one object as a function of the property value of another object. For instance Item { width: anotherItem.width * 2 } In the example…
