7
一度ドロップターゲットをアクティブにすると、カーソルが元のドロップターゲットよりも上にある別のドロップターゲットに移動しても有効です。オーバーラップドロップターゲットを正しく実装するにはどうすればよいですか?
ここにQMLデモがあります:ファイルを灰色と青色の領域にドロップしてみてください。青いものは決して活性化されません。
import QtQuick 2.1
Rectangle {
color: "grey"
width: 300
height: 300
DropArea {
anchors.fill: parent
onDropped: status.text = "Dropped on Grey";
}
Rectangle {
color: "blue"
anchors.fill: parent
anchors.margins: 80
DropArea {
anchors.fill: parent
# Never active!
onDropped: status.text = "Dropped on Blue"
}
}
Text {
x: 10
y: 10
id: status
text: "Nothing dropped"
}
}
灰色と青の両方の矩形にドロップする方法はありますか?
これは解決されましたか? – ustulation