Delphi-like GUI designer for Python

前端 未结 3 542
温柔的废话
温柔的废话 2021-02-06 08:59

Is there any GUI toolkit for Python with form designer similar to Delphi, eg where one can drag and drop controls to form, move them around etc.

3条回答
  •  滥情空心
    2021-02-06 09:51

    Use Glade + PyGTk to do GUI programming in Python. Glade is a tool which allows you to create graphical interfaces by dragging and dropping widgets. In turn Glade generates the interface definition in XML which you can hook up with your code using libglade. Check the website of Glade for more info.

提交回复
热议问题