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