C
QtObject QML 类型
A basic QML type. More...
详细描述
QtObject 类型是一个非可视元素,包含没有任何属性。
如果需要一种非常轻量级的类型来封装一组自定义属性,它可能很有用
import QtQuick 2.15 Item { QtObject { id: attributes property string name property int size } Text { text: attributes.name } }
它对于 C++ 集成也很有用:从 Qul::Object 继承的类型在 QML 中可用。
在某些 Qt 许可证下可用。
了解更多。