How To Use The "native" Gui Look With Tkinter?
By default Tkinter still uses the old Windows 2000-style widgets (random example): but I want it to use the Windows XP/Vista/7-style widgets instead: How can I do this? I would p
Solution 1:
On Windows, use tkinter.ttk to get the the themed version of Tk.
Solution 2:
The ttk themed widgets are what you are looking for. Be sure to use the 'vista' theme to get native appearance on Vista/Win7.
Post a Comment for "How To Use The "native" Gui Look With Tkinter?"