4

单击鼠标右键时,我试图让用户删除行。我已将按钮 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

字典在这里打印得很好。请注意,这些都是一个类中的所有功能。

4

1 回答 1

0

我已经尝试根据您的代码制作一个工作示例,现在我知道问题出在哪里:find_closest如果找到一个项目,则返回一个包含一个元素的元组,因此当您检查它是否在字典中时,首先您必须检索元组的第一个元素。

def eraseItem(self,event):
    tuple_objects = self.workspace.find_closest(event.x, event.y, halo = 5)
    if len(tuple_objects) > 0 and tuple_objects[0] in self.dictID:
        objectToBeDeleted = tuple_objects[0]
        del self.dictID[objectToBeDeleted]
        self.workspace.delete(objectToBeDeleted)
于 2013-03-16T19:11:19.047 回答