I\'m trying to make a canvas scrollable. However, once I try to set up scrollbars to work with the canvas, tkinter seems to completely ignore the dimensions I initially set for my canvas. I\'ve tried
What I\'m trying to do here is save the contents of a Tkinter Canvas as a .png image using PIL. This is my save function (\'graph\' is the canvas).
I\'ve been messing with the Tkinter Canvas widget in order to see if I could make some aesthetically pleasing widgets, and I have a few questions.
Is there a create_text() mode or technique that supports word wrap? I\'m stuck using create_text() vs. a Label or Text widget because I\'m placing text on top of an image on my Canvas.
I want basically to be able to use a Canvas as a meta container for other widgets. I want to divide my GUI into a left, center and middle section. Within each section I would like to be able to plac
I\'m trying to embed a plot in my Tkinter GUI coded in Python. I believe the code below succeeds in simply putting a graph into a canvas, but I don\'t have any control of the canvas location within th
I\'m using Python and tkinter. I have a Canvas widget that will display just one image. Mos开发者_开发知识库t times the image will be larger than the canvas dimensions, but sometimes it will be smalle
Does anyone have any idea why I get different line widths on the canvas in the following example? from Tkinter import *
Say I have objects wit开发者_如何学运维hin the Canvas with a tags \'stopped\' and \'flying\'.
How would I print contents of a Python Tkinter.Canvas widget? I\'ve read that it\'s possible to print to a postscript printer from this contr开发者_开发问答ol but examples are hard to come by.