有人能建议我如何抑制外部画布的内部画布的 2 像素边框。例如 - 你可以看到边框:
w.mainloop()
w=tk.Tk()
f=tk.Frame(w,width=300,height=300,bg='yellow')
f.pack()
c_outer=tk.Canvas(f,width=20,height=20,bg='red')
c_outer.pack()
c_inner=tk.Canvas(c_outer,width=10,height=10,bg='blue')
c_outer.create_window(0,0,anchor=tk.NW,window=c_inner)
c_inner2=tk.Canvas(c_outer,width=10,height=10,bg='green')
c_outer.create_window(10,10,anchor=tk.NW,window=c_inner2)
任何内部画布的内容都由 2 像素边框限定。感谢帮助。