6

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

GEOCHET
  • 21,119
  • 15
  • 74
  • 98
  • Duplicate: http://stackoverflow.com/questions/64971/what-is-the-best-wysiwyg-gui-editor-for-python – S.Lott Feb 18 '09 at 15:01

6 Answers6

13

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

joeforker
  • 40,459
  • 37
  • 151
  • 246
  • I have just downloaded Glade but I suppose that I need to install it as a plugin for PyCharm in order to use it. However, only *.jar and *.zip files can be used as plugins but there seems not to be any such file in the Glade installation. So what should I do now? – Dominique Mar 30 '16 at 14:47
4

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
  • 2,446
  • 1
  • 24
  • 34
2

http://wxformbuilder.org

Rook
  • 60,248
  • 49
  • 165
  • 242
2

I use PyQt; it is built on the QT Toolkit.

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

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.

Community
  • 1
  • 1
Jason Coon
  • 17,601
  • 10
  • 42
  • 50
1

I use wxGlade

RSabet
  • 6,130
  • 3
  • 27
  • 26
1

It deppends of the GUI toolkit you're using.

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

Anonymous
  • 3,011
  • 4
  • 24
  • 23