I am new to python and am looking to write a simple GUI for a script I wrote. I would need to be able to drag/drop boxes within a window. i.e. I would have a blank field and under it a list of options represented by different boxes. I would then want to be able to drag the options in the filed and list them in it as they are added. I know this is relatively easy do to in javascript using jQuery but I am not doing a web application. Which python gui framework would allow me to do this drag/drop easily ? Tkinter, pyQT, wxPython ?
Asked
Active
Viewed 2,450 times
0
-
Possible duplicate of [Is there a GUI design app for the Tkinter / grid geometry?](http://stackoverflow.com/questions/14142194/is-there-a-gui-design-app-for-the-tkinter-grid-geometry) – amitnair92 Jun 11 '16 at 08:39
2 Answers
0
wxPython with:
Theres also qt bindings with pyqt and pyside, where you could use QT Creator to Design your applications.

Christian Witts
- 11,375
- 1
- 33
- 46
0
you can use Rapyd for python development with Tkinter.
This is an open-source development environment for developing applications using Python, Tkinter and, optionally, Pmw.

Harish Talanki
- 866
- 13
- 27