from Tkinter import * import tkMessageBox, socket root = Tk() root.title(\"pynet v1.0\") root.config(bg=\'black\')
Is there a way to only开发者_运维技巧 allow a user to check one Checkbutton widget at a time out of a set of Checkbutton widgets? I can imagine some brute-force solutions, but I\'m looking for somethi
I am writing an application in Python using Tkinter to manage my GUI. There is a text entry box on which I am trying to implement an autocompletion function which will bind to the Tab key.
How 开发者_运维技巧do I get a windows current size using Tkinter, or possibly with the python standard library? Use the following universal widget methods (where w is a widget):
I found a problem with Tkinter.Listbox when it is working with Entry or Text widgets. Whenever something is highlighted in the Ent开发者_StackOverflow社区ry or Text widget, it clears the listbox sele
so I\'ve got this little Text widget with a scroll bar and I\'ve got a question. How do I make text in this Text widget a variable ? If I made this text a variable I would be able to open a text file
I have multiple Tkinter listboxes that I have scrolling together using a single scrollbar, but I\'d ALSO like them to scroll together for mousewheel activity over any of the listboxes.
I\'m currently using PIL to display images in Tkinter. I\'d like to temporarily resize these images so that they can be viewed more easily. How can I go about this?
I\'m trying to hide the axis labels on the first subplot at 211. I\'d like to label the figure, not just a subplot (refer开发者_Python百科ence: \"Isub Event Characteristics\").
how do I put my menu bar buttons on menu bar\'s left ? Right now I pack() them with side=LEFT but still they\'re in the middle. Here\'s the code for my menu bar: http://pastebi开发者_运维问答n.com/bgn