Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I will talk only about WxPython because it's the only toolkit I have experience with. TkInter is nice to write small programs (then it doesn't require a GUI Designer), but is not really appropriate for large application development.</p> <ul> <li><p><a href="http://wxformbuilder.org" rel="noreferrer">wxFormBuilder</a> is really good: it generates <code>.XRC</code> files you need to load in your program, and it can generate <code>.py</code> files by subclassing them when you use.</p></li> <li><p><a href="http://www.dialogblocks.com" rel="noreferrer">DialogBlocks</a> and <a href="https://wiki.python.org/moin/WxDesigner" rel="noreferrer">wxDesigner</a> are two <strong>commercial</strong> software which can generate Python code directly. I didn't tested these much because of their price.</p></li> <li><a href="http://wxglade.sourceforge.net" rel="noreferrer">wxGlade</a> is (I think) not yet mature enough for large programs, but it's worth a try.</li> </ul> <p>After trying all these, I realized they had all <em>flaws</em> and that nothing is better than just writing the GUI in an editor. The problem is the extended learning curve. But then you will be much more faster and your code will be much more flexible than when using a GUI designer.</p> <p>Have a look at this <a href="http://wiki.wxpython.org/wxPythonPit%20Apps" rel="noreferrer">list of major applications</a> written with wxPython. You will probably see that none of these use a GUI Designer, there must be a reason for this.</p> <p>You then understand <strong>gs</strong> is right when saying that either you switch to PyQt or you write your application by hand. I had a look at Qt Designer in the past and thought this was what I needed. Unfortunately PyQt has some license restrictions.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload