单击鼠标右键时,我试图让用户删除行。我已将按钮 3 按下事件绑定到画布,并将其传递给以下函数
def eraseItem(self,event):
objectToBeDeleted = self.workspace.find_closest(event.x, event.y, halo = 5)
if objectToBeDeleted in self.dictID:
del self.dictID[objectToBeDeleted]
self.workspace.delete(objectToBeDeleted)
但是,当我右键单击这些行时,什么也没有发生。我已经单独测试了字典并且行对象被正确存储。
这是我的绑定:
self.workspace.bind("<Button-3>", self.eraseItem)
每个请求来自字典初始化的一些其他片段
def __init__(self, parent):
self.dictID = {}
... Some irrelevant code omitted
对于线条创建,我有两个处理程序,一个 on click 和一个 on release,它在两个坐标之间绘制线条
def onLineClick(self, event):
self.coords = (event.x, event.y)
def onLineRelease(self, event):
currentLine = self.workspace.create_line(self.coords[0], self.coords[1], event.x, event.y, width = 2, capstyle = ROUND)
self.dictID[currentLine] = self.workspace.coords(currentLine)
print(self.dictID.keys()) #For testing dictionary population
print(self.dictID.values()) #For testing dictionary population
字典在这里打印得很好。请注意,这些都是一个类中的所有功能。