show/hide this revision's text 3 Updated the link to wxDesigner

I've made numerous UI's in wxPython and would highly recommend it. I used to build in VisualC++/MFC then discovered wxWidgets/C++ and finally moved onto wxPython. I find I'm able to get working GUIs in no time at all with wxPython compared to the other methods and with almost no effort, the same source works works on Linux and the Mac* (sometimes you need some tweaks for visual anomolies).

*I generally develop under Windows in case you hadn't guessed.

[Edit] There's a tool (wxDesigner) you can use to generate the layout for you or alternatively, you can play with it programmatically. Either way, layout under wxWidgets is done using Sizers. They're quite a powerful way of laying out a GUI and once set up correctly, will automatically resize your controls appropriately for you.

[Edit2] There's a nice little tutorial on sourceforge with some good examples of what you can do with sizers.

show/hide this revision's text 2 added 474 characters in body

I've made numerous UI's in wxPython and would highly recommend it. I used to build in VisualC++/MFC then discovered wxWidgets/C++ and finally moved onto wxPython. I find I'm able to get working GUIs in no time at all with wxPython compared to the other methods and with almost no effort, the same source works works on Linux and the Mac* (sometimes you need some tweaks for visual anomolies).

*I generally develop under Windows in case you hadn't guessed.

[Edit] There's a tool (wxDesigner) you can use to generate the layout for you or alternatively, you can play with it programmatically. Either way, layout under wxWidgets is done using Sizers. They're quite a powerful way of laying out a GUI and once set up correctly, will automatically resize your controls appropriately for you.

[Edit2] There's a nice little tutorial on sourceforge with some good examples of what you can do with sizers.

show/hide this revision's text 1

I've made numerous UI's in wxPython and would highly recommend it. I used to build in VisualC++/MFC then discovered wxWidgets/C++ and finally moved onto wxPython. I find I'm able to get working GUIs in no time at all with wxPython compared to the other methods and with almost no effort, the same source works works on Linux and the Mac* (sometimes you need some tweaks for visual anomolies).

*I generally develop under Windows in case you hadn't guessed.