Python Forum
GUI with drag and drop functionality - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: GUI with drag and drop functionality (/thread-23234.html)



GUI with drag and drop functionality - sayyedkamran - Dec-17-2019

Is there any GUI tool available with Drag and Drop functionality?


RE: GUI with drag and drop functionality - Denni - Dec-17-2019

Yes... -- but what are you using for your GUI language?


RE: GUI with drag and drop functionality - sayyedkamran - Dec-17-2019

I am using Python


RE: GUI with drag and drop functionality - Denni - Dec-17-2019

Okay well Python by itself does not render a GUI very easily -- so what GUI language are you using -- TKinter, PySide2, PyQt5, WxPython, etc...


RE: GUI with drag and drop functionality - sayyedkamran - Dec-17-2019

I didn't decided which one to use. My preferences are, it must be:
1. Free
2. support drag and drop functionality


RE: GUI with drag and drop functionality - Denni - Dec-17-2019

well I know Python-Qt supports drag and drop (aka PyQt5 or PySide2) but you had not communicated initially that you were in search of a GUI language


RE: GUI with drag and drop functionality - charlesauspicks - May-23-2020

(Dec-17-2019, 07:29 PM)Denni Wrote: well I know Python-Qt supports drag and drop (aka PyQt5 or PySide2) b
This was very helpful... Thanks doc!


RE: GUI with drag and drop functionality - jefsummers - May-26-2020

Yes but "free" does not completely apply. Say you write the next big thing app and want to sell it without releasing the source code. PyQt5 will then cost over 500 for the commercial version and you also need to pay QT for the commercial version at how many thousand?

I don't really plan to write the next big thing app. However, given those restrictions I use wxPython and wxGlade - not quite as easy, but it does not have the licensing restrictions of the QT based products.