2

我正在编写一些类,它扩展了 QObject 并且几乎没有 Q_PROPERTY 我在 QList 中使用一个角色(总是返回 QObject* )的 QAbstaction 模型中使用它;在 QML 中,我会使用 TextEdit 绑定属性,例如:

Binding
{
    target :currentReport
    property: description
    value: text_description_edit.text
}

但是此条目返回错误并且不绑定我的属性:

file:///..somePath../ReportAddDelegate.qml:179: ReferenceError: Can't find variable: description

如何在 qml 中编辑我的 QObject 属性?

UPD:我property QtObject currentReport在委托组件中使用

//对不起我的英语不好

4

1 回答 1

1

解决了!我在 Binding 中犯了错误!property: "description"需要写property: description

于 2012-08-22T19:51:38.307 回答