I have a fairly large work project that uses pygtk for the GUI and I need reduce the开发者_StackOverflow社区 dependencies and convert to tkinter.
I\'m writing a Tkinter GUI in Python. It has an Entry for searching with a results ListBox below it. The ListBox also has a Scrollbar. How can I get scrolling with the mouse and arrow keys to work in
The matpl开发者_StackOverflowotlib code is in http://matplotlib.sourceforge.net/examples/animation/strip_chart_demo.html
I\'m working on a Gui and I\'d like to know if it is possible to ma开发者_运维百科ke the menu property of a window a separate class on my script for a clearer and more enhancement prone code.
I have a list of n Entry widgets. Every widget accepts only one character, and then the focus is passed to the next one. I would like to \".get()\" the values of the n widgets, but I can\'t get the la
I am trying to build a GUI in Python using Tkinter.My idea is to build several Frames inside the root Frame.I can get 2 Frames to appear, but the third Frame overlays the second Frame.I\'ve tried both
I have bound aevent to a t开发者_StackOverflowext widget in order to follow all the changes in its text. This event is called before the new character is added to the widget\'s text. What I need is a
I made a GUI wit开发者_如何转开发h Tkinter, now how do I make it so when a key command will execute a command even if the Tkinter window is not in focus? Basically I want it so everything is bound to
I\'m having problems making a top level widget fade in, in TKinter开发者_如何学JAVA. For some reason the widget doesn\'t fade in at all, then it will show up in the taskbar, but only after clicking th
I\'d like to implement my own key command. However when I do, it does both what I tell it and the default command. How do I disable the default command, so that my command is the only one that runs?