I haven’t gotten far enough into Python to make GUIs yet, so I thought I’d ask here. Can a python app be made with the windows default style GUI, or will it have its own style? The only screenshots I’ve seen of a python app running with a GUI had this ugly win95 look to it.
Share
There are Python bindings for every major toolkit: GTK+, Qt, Tk, win32/MFC (not fun to use directly), wx (which in turn uses various other toolkits), Windows.Forms (through IronPython)…so in short, yes, probably.
If you define exactly what “native” should look like on what platform, someone can probably tell you exactly what you want. My favourite GUI toolkit is GTK (using PyGTK) which is native on Gnome and looks pretty good to me on Windows.