I know that Tkinter is just a thin layer over Tcl/Tk. Tkinter you can do a few things to change the windows styling. One examp开发者_StackOverflow中文版le would be root.attributes(\'-toolwindow\', Tru
Hi i was wondering if you could have the comand prompt box pop into the Tkinter window when you start the program? Some thing lik开发者_Go百科e:
I have something like this: from Tkinter import * root = Tk() root.title(\"Test\") def _quit(): roo开发者_如何学Pythont.destroy()
So I am trying to use Tkinter to receive a text input, and then run pygames from that to do an animation. I get an error though when I close Pygames.
I\'m trying to write a simple music player. For some reason after I select a m开发者_如何学运维p3 file and hit the play button, no sound occurs. No error, nothing. It seems to skip right over the comm
I know how to create a Listbox using Tkinter but this only allows me to display a list of single items. I need to create a expandable list that allows the user to hit something along the lines of a +
I\'m trying to make it so that if a Tkinter window is dragged or moved in any way, a function开发者_Python百科 is called. Is there any way to do this?
there is my problem: i\'m trying to get all number开发者_StackOverflows from a Tkinter\'s text widget(get\'s the text from a file) this way:
I would like to know where开发者_如何学C exactly a widget is on the screen. You want to use the winfo_rootx and winfo_rooty methods of a widget.
So i\'ve created a frame here.. frame=Frame(master,bg=\"grey\") frame.pack(side=TOP, fill=BOTH, padx=15, expand=1)