.Net Like Gui Builder for Python?

Sturla Molden sturla.molden at gmail.com
Mon Jul 28 05:59:49 EDT 2014


Kevin Walzer <kw at codebykevin.com> wrote:

> I'm not sure which GUI framework you use, but Tkinter is so simple to 
> code in directly that you don't really need a UI builder. Give that a try.

This is always true for GUI toolkits which use layout managers. A sketchpad
is much more useful. If you can quickly sketch ut how space should be
divided, there is no need for a GUI builder to construct the GUI. 

You need a GUI builder if the GUI is based on absolute positioning and
anchors, such as Delphi, VB and .NET. In this case manual coding of the GUI
will be extremely tedious.

If you try a GUI builder with layout managers (cf. wxFormBuilder) you will
also find that it does not behave as you expect. Most will just find it
annoying. But a GUI builder can be a nice way of avoiding having to
remember (or look up) all property names.

Sturla




More information about the Python-list mailing list