我有一个带有值参数的项目。我想知道如何捕捉它的变化事件?
假设有一个 RectComp.qml:
Item{
property alias currentX: rect.x
Rectangle {
id: rect
x: 617
y: 450
}
}
处理currentX
来自创建其实例的应用程序的更改 说明如何
Rectangle {
id: host
x: 617
y: 450
RectComp{ id: MyRC}
OnMyRCcurrentXChange(int){log("hello!")}
}