QMLでアイテムをバインドする際に問題があります。例:
Rectangle{
id: thetarget
width:100
height:100
}
Item{
id: container
MouseArea{
id:mousearea
drag.target: thetarget //not work
anchors.fill: thetarget //not work
property int foo: thetarget.width //work
}
}
私が欲しいのは、drag.target、anchors.fillのバインディングを、構造を変更せずに機能させることです(mouseareaはターゲットの兄弟または子ではありません)。私はBinding、functionを使用してターゲットを返しましたが、それらはすべて役に立たないです。誰かが私に何が悪いのか教えてもらえますか?