Tkinter Canvas Bind '' Event To Item
Am I missing something ? I thought I've done something like the example below. But neither I found a script of mine that act like I hoped, nor I have found something online. Basica
Solution 1:
Like the error says, you can't bind to the <Configure>
event, it's simply not an option. That event is only valid for widgets, not items drawn on a canvas.
Post a Comment for "Tkinter Canvas Bind '' Event To Item"