I\'m developing an appl开发者_如何学Cication in VTK / TK and I was wondering what\'s the best way to provide the user with a table which lists items and allow the user to pick the color for each item:
I embedded a matplotlib graph of a sphere into Tkinter. Now for some reason I\'ve lost the ability to orbit the object, when dragging the mouse. Anyone have an idea of why this happened and how to fix
With this code, the window is 500 by 500, which is what I\'m going for: from tkinter import * root = Tk()
I apologize if this has been asked but does Tki开发者_StackOverflow中文版nter work in Python 2.6.6 when installed with Mac Ports? Or do I need to pass the no_tkinter variant?
Is it possible to call Tcl procedures that have function pointers (or callback functions) from Python?
I made a tkinter window in python with some widgets like so: def createWidgets(self): self.grid(padx=25, pady=25)
I\'m building a graphical program that will need to show files on both the user\'s computer and on a remote server. I\'m using Tkinter, and I\'m definitely a novice with this toolkit. I want to have t
How can I place an image in a Tkinter GUI using the python standard library?开发者_开发知识库 I don\'t normally use Tkinter, but I\'ll take a shot at answering. According to Google, loading images in
This question already has answers here: Why is my Button's command executed immediately when I create the Button, and not when I click it? [duplicate]
I\'m using a listbox (with scrollbar) for logging: self.listbox_log = Tkinter.Listbox(root, heigh开发者_如何学JAVAt = 5, width = 0,)