import QtQuick 2.2 import QtQuick.Controls 1.1 import QtQuick.Layouts 1.1 ApplicationWindow { visible: true width: 640 height: 480 title: qsTr("Checkbox binding fails") RowLayout { id: layout anchors.fill: parent property bool blnChecked: false Item { width: 50 } CheckBox { id: cbA checked: layout.blnChecked onClicked: layout.blnChecked = checked } CheckBox { id: cbB checked: layout.blnChecked onClicked: layout.blnChecked = checked } } }