Transparent Canvas In Tkinter Python
I need to have the canvas to be transparent and sit in front of buttons, labels ect (Making the idea of just using a canvas background impracticable). So when the user draws stuff,
Solution 1:
Making the Canvas transparent is not possible (as already said here) but you can try with wxPython.
Otherwise, I suggest that you create two canvases: one with the widgets and one with a background image that fakes the widgets. Then you could just show the frame that you want to use and hide the other (using the option state=HIDDEN). But that would make the widgets unusable while you are drawing. I can't come up with a better solution.
Post a Comment for "Transparent Canvas In Tkinter Python"