1 つの小さな審美的な問題で問題なく動作するドラッグ アンド ドロップ プログラムを作成しました。リストボックスでアイテムを選択し、それを canvas.create_text に変換してから、キャンバスにドロップすることで機能します。唯一の問題は、create_text がリストボックスの下にあり、リストボックスの上に表示する方法を考えていたことです。初期化の順序を変えてみたり、上げ下げを見たりしましたが、変化は見られませんでした。
def body(self, master):
self.list = Listbox(master, width=26, height=10)
self.list.grid(row=0, column=1)
self.canvas = Canvas(master, width=350, height=500)
self.canvas.grid(row=0, column=0)
for j in self.items:
self.list.insert(END, j)
self.list.bind("<ButtonPress-1>", self.onPress)
self.list.bind("<ButtonRelease-1>", self.onRelease)
self.list.bind("<B1-Motion>", self.onMotion)
def onPress(self, event):
'''Being drag of an object'''
# record the item and its location
w = event.widget
index = w.nearest(event.y)
name = self.list.get(index)
t = self.canvas.create_text(event.x+350, event.y+90, text=name.replace(' ', '\n'),justify=CENTER, tags='sweden')
self.dragData["item"] = t
self.dragData["x"] = event.x
self.dragData["y"] = event.y
self.list.delete(index)
def onMotion(self, event):
'''Handle dragging of an object'''
# compute how much this object has moved
deltaX = event.x - self.dragData["x"]
deltaY = event.y - self.dragData["y"]
# move the object the appropriate amount
self.canvas.move(self.dragData["item"], deltaX, deltaY)
# record the new position
self.dragData["x"] = event.x
self.dragData["y"] = event.y
def onRelease(self, event):
'''End drag of an object'''
# reset the drag information
wx, wy = self.canvas.winfo_rootx(), self.canvas.winfo_rooty()
x,y = self.winfo_pointerxy()
cx = self.canvas.canvasx(x-wx)
cy = self.canvas.canvasy(y-wy)
#Rest of the release code