目录
1.属性(Property)
2. 对象列表
3. 属性组
4.代码示例
1.属性(Property)
- 基本属性声明:
property
用于声明可绑定的属性。 - 属性绑定:属性可以绑定到对象属性或函数。
- 属性别名:使用
property alias
定义别名,可以将子对象的属性暴露给外部使用. - defaul默认,如果使用了required,就必须使用,否则报错,readonly只读不可修改
2. 对象列表
- 使用
property list<Type>
声明对象列表,方便批量管理多个对象。 - 对象可以通过索引访问,例如
rectlist[0].color
。
3. 属性组
- 某些对象的属性可以归组设置,例如
font
属性组。等价于单独设置。
4.代码示例
import QtQuick
import QtQuick.Controls
Window {id:rootwidth: 640height: 480visible: truetitle: qsTr("Hello World")property int dataInt: 100property string stingTest: "china"//属性绑定property int varwidth: root.width// 对象绑定property int varwidth1: getReal()// 与函数绑定//对象列表property list <Rectangle> rectlist : [Rectangle{color:"red"},//index 0Rectangle{color:"green"},//index 1Rectangle{color:"white"}//最后一行不加逗号]//属性别名property alias aliasHeight: root.height//函数function getReal(){return 2}//属性组Label{id :labelanchors.centerIn: parenttext: "text label"//独立属性// font.pixelSize: 16// font.bold:true//属性组font{pixelSize: 16;bold:true}}//赋值Component.onCompleted: {console.log("dateInt:"+dataInt)console.log("stingTest:"+stingTest)dataInt=99//赋值console.log("dateInt:"+dataInt)console.log("varwidth:"+varwidth)console.log("varwidth1:"+varwidth1)console.log("varwidth1:"+varwidth1)console.log("rectlist.length:"+rectlist.length)console.log("rectlist.length:"+rectlist[0].color)root.height=600console.log("aliasHeight:"+aliasHeight)aliasHeight=500console.log("aliasHeight:"+root.height)}}