我创建了一个拖放程序,可以很好地解决一个小的美学问题。它的工作原理是在列表框中选择一个项目,将其转换为 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