Python GUI | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

Python GUI

I wanted to do an application with Python but the problem is the GUI. Is there any way for connecting a C# program on VS 2019 to a Python code so the hardest part is done by Python and the graphics are done by C#?

4th Aug 2020, 3:58 AM
Bonsai
2 Réponses
+ 6
What is the "hardest part"? I think GUI is the hardest to do :) I mean what could be too difficult for c#? But making GUI in Python is really easy too, you just need the right libraries. tkinter is built into standard python, and you can even use it for graphics (canvas) or draw plots with matplotlib. There are also other libraries for python: pyqt5, wxpython, kivy, pysimplegui... Believe me, you are much better off implementing everything in the same language, rather than parts in python and parts in C#.
4th Aug 2020, 4:40 AM
Tibor Santa
Tibor Santa - avatar
+ 2
Thanks @Tibor Santa
4th Aug 2020, 4:55 PM
Bonsai