値パラメーターを持つアイテムがあります。その変更イベントをキャッチする方法を教えてください。
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!")}
}