89.5, 89.7, 89.4, 89.5, 89.9
我在FOR画布上创建图像,我想在需要时删除它们 ,但只有最后一个具有标记(名称)对象,所以当我输入: canvas.delete(object)时,它只删除最后一个。所以我想知道是否可以删除位于特定位置的对象(不是名称/标签)。
答案 0 :(得分:1)
如果您知道坐标(坐标),则可以删除画布上的对象。使用item = canvas.find_overlapping(coord)
查找该位置的对象,然后使用canvas.delete(item)
请参阅以下示例代码:
注意:如果您只知道对象上的一个点,那么请使用canvas.find_overlapping(x, y, x, y)
代替canvas.find_overlapping(x1, y1, x2, y2)
import Tkinter as tk
import random
root = tk.Tk()
canvas = tk.Canvas(root, width=550, height=500, borderwidth=0)
canvas.pack(expand=True, fill="both")
coord_list=[]
for i in range(random.randint(1,4)):
xos=[150,200,250,300,350,400,450,500]
yos=[150,200,250,300,350,400,450]
xos_=random.choice(xos)
yos_=random.choice(yos)
coord = (xos_,yos_,xos_+50,yos_+50)
coord_list.append(coord)
objectt=canvas.create_rectangle(coord, fill="blue")
canvas.create_rectangle(25, 15, 50, 40, fill="red")
# Delete red rectangle
def delete1(event):
item = canvas.find_overlapping(25, 15, 50, 40)
canvas.delete(item)
# Delete blue rectangles
def delete2(event):
for coord in coord_list:
item = canvas.find_overlapping(*coord)
canvas.delete(item)
#Click on the canvas to delete objects at the coordinates
canvas.bind("<Button-1>", delete1) # change function to delete blue rectangles
root.mainloop()
答案 1 :(得分:0)
不确定。 场景(A)假设我们在点击时使用鼠标左键来识别画布对象,并在释放鼠标左键时删除该对象。
步骤1:将这些命令包含在用于绑定到mvn -pl common,moduleA install package -X -U
以删除对象的回调/方法中。
Button-1
步骤2:将这些命令包含在用于绑定到mx = canvas.canvasx(event.x) #Translate mouse x screen coordinate to canvas coordinate
my = canvas.canvasy(event.y) #Translate mouse y screen coordinate to canvas coordinate
self.canvasobject = canvas.find_closest(mx, my, halo=5) # get canvas object ID of where mouse pointer is
print(self.canvasobject) #For you to visualize the canvas object number
以删除对象的回调/方法中。
ButtonRelease-1
场景(B):假设您已经知道对象画布x,y坐标,您可以发出一个命令来删除画布对象:
canvas.delete(self.canvasobject) #delete the selected canvas object
有关我使用过的canvas方法和其他canvas方法的说明,请参阅此webpage。