tags:

views:

419

answers:

6

Does anyone know of any GUI designer for python like Glade but for windows?

+4  A: 

I would suggest using PyQt and the Qt-designer(WYSIWYG gui designer) for making cross platform gui apps.

Qt has even gone LGPL, making it even more attractive.

You can find PyQt at: http://www.riverbankcomputing.co.uk/software/pyqt/download

Nailer
Until PyQt goes LGPL, it doesn't matter what license Qt has if you hate freedom and want to write non-GPL programs.
joeforker
Doh, didn't think about that one =D
Nailer
+1  A: 

http://wxformbuilder.org

ldigas
+1  A: 

I use PyQt (PyQt Homepage); it is built on the QT Toolkit (http://www.qtsoftware.com/).

If you are deploying to Windows, it works well with the py2exe module (py2exe).

It's fairly straightforward to use, especially if you already have experience with the QT libraries.

Note: this was my answer to a similar question.

jcoon
+12  A: 

Glade/Gtk+ for Windows is exactly like Glade but for Windows.

joeforker
that is funny :)
roddik
A: 

I use wxGlade

RSabet
A: 

It deppends of the GUI toolkit you're using.

For wxPython, there is boa-constructor. It's a Delphi-like IDE.

Anonymous