QML 自定义属性
我在 QML 项目中定义自定义属性时遇到问题:
Item {
property MovieTileItem data
Text {
text: "Some text"
}
}
MovieTitleItem 是在单独的 QML 文件中定义的项目:
import Qt 4.7
Item {
property string title
property string posterSource
}
我收到的错误是“无法将对象分配给属性”,指向属性声明。 有什么想法吗?
I'm having trouble defining a custom property in a QML item:
Item {
property MovieTileItem data
Text {
text: "Some text"
}
}
MovieTitleItem is an Item defined in a separate QML file :
import Qt 4.7
Item {
property string title
property string posterSource
}
The error I get is "Cannot assign object to property" pointing to the property declaration.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“无法将对象分配给属性”,因为已经存在“数据”这样的属性(并且它是只读的):
http://qt-project.org/doc/qt-4.8/qml-item.html#data-prop
"Cannot assign object to property" because there is already such property as "data" (and it's read-only):
http://qt-project.org/doc/qt-4.8/qml-item.html#data-prop
我相信,如果自定义类型未使用 qmlRegisterType() 注册,则不能将其用作属性类型。以下可能会实现您正在寻找的东西
I believe, custom types can not be used as property types if they are not registered with qmlRegisterType(). Following may probably achieve what you are looking for