比如在Listview的表头设置了一个复选框,之后想要在其他控件中动态修改复选框的文本,通过id来修改无效,因为它在表头内,对其他控件来说未定义。可以采用一个外部属性来解决:
Window {width: 400height: 400visible: trueproperty int title: 1property string name: qsTr("1")ListView{id: viewwidth: parent.widthheight: parent.height - 50header: Item{width: parent.widthheight: 30CheckBox{id:checkalltext: name}}}Button{width: 60height: 20anchors.top: view.bottom;text: qsTr("切换")onClicked: {title += 1if(title > 4)title = 1if(title==1)name = qsTr("1")else if(title==2)name = qsTr("2")else if(title==3)name = qsTr("3")else if(title==4)name = qsTr("4")}}
}