Copy Tkinter Canvas Items
I need top be able to create a copy of a tkinter canvas item, so that a copy of an image can be dragged off of an original. I have dragging working for the images, but I cannot see
Solution 1:
You can get item type (canvas.type(item)), item configuration (canvas.itemconfig(item)) and etc.
And than you can recreate identical object.
See also: Tkinter - making a second canvas display the contents of another
Post a Comment for "Copy Tkinter Canvas Items"