4

我面临一个大问题,即需要很长时间才能修复,因为我不知道原因以及如何修复它。问题很简单:我有一个示例 QML 组件定义为:

Rectangle {
    id: rect
    property bool test: myclass.testproperty

    Rectangle {
        width: 50
        height: 50
        visible: parent.test
    }
}

我连接了一个 MouseArea onClicked 信号来执行此操作:

test = !test

所以我切换布尔变量的值。为了使用 READ、WRITE 和 NOTIFY 信号将值从 C++ 推送到 QML 以及从 QML 推送到 C++ Q_PROPERTY,我使用了这个

Binding {
    target: myclass
    property: "testproperty"
    value: rect.test
}

在我单击 mouseArea 之前一切正常,因此我通过绑定推送更改。之后,每次我尝试从 C++ 设置新的属性值时,我都看不到 QML 有任何变化,就像绑定被破坏一样。但是,如果我尝试单击 MouseArea,我仍然会调用 C++ 类的 setTestProperty 方法。基本上,它与 C++ -> QML 方式不同步。为什么?我找不到问题,发出信号是因为 QSignalSpy 给我 1 作为使用后发出的次数

emit this->testPropertyChanged(newvalue)

编辑

这里是一个例子:基本上我们在这里使用具有相同确切信号的 QString 属性。唯一改变的是,我没有使用 Rectangle QML 元素并绑定到自己的属性,而是使用了 TextInput 元素

TextInput {
    id: mytext
    text: myclass.testproperty
}

Binding {
    target: myclass
    property: "testproperty"
    value: mytext.text
}
4

1 回答 1

7

这里没有问题。这是一个标准的 QML 绑定行为。当您在 JavaScript 代码中更改某些 QML Widget 的属性时,对它的所有声明性绑定都将终止。您可以选择在事件处理程序的 JS 代码中手动使用声明性绑定或更新值。

编辑

Rectangle {
    id: rect

    // Establishing initial value for 'test' property via QML binding
    property bool test: myclass.testproperty

    // Manual update of 'test' property when binding will be broken
    Connections {
        target: myclass
        onTestpropertyChanged: {
            rect.test = xxx
        }
    }
}
于 2012-08-11T09:58:40.217 回答