Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.8.3, 6.9.0
-
3fcd01413 (dev), 83b2f89f8 (6.9), d75cf746b (6.8)
-
framework-content 9
Description
Multiple bindings with different target objects are supported by the Binding type's new syntax.
This should be reflected in the documentation.
import QtQuick Window { id: root width: 640 height: 480 visible: true title: qsTr("Hello World") Text { id: t1 } Text { y: 20 id: t2 } Binding { t1.text: "Foo" t2.text: "Bar" } }