Tag: property binding

  • PropertyBinder class in Qt

    PropertyBinder class in 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 above, the width of one item is twice the width of another item. If for…