When I am at the start menu when I open up Visual Studio 2022 and I am looking around and choose Create a new project, there are entries for Python, Windows, and All project types.
I can easily find Console Application which is fine for me. But in the drop down box if I click on Desktop, there are no entries in the drop down list for desktop application.
Just wondering about this why Desktop is not showing up in the drop down list box.
I think I installed what I needed to when I installed the workload.
The Python extension for Visual Studio does not support development of GUI applications. You could use the “console application” template and use your favorite Python GUI framework in your application.
I saw a video on YouTube about Iron Python, and I saw a GUI designer being used there. But I really didn’t understand all that is involved in setting it up in Visual Studio.
How do you use the console application template but still make a GUI?
I’ve been looking on YouTube for videos that show how to make a GUI with Python. I’ve also been considering Java. But building GUI’s in Java seems clunky and your typing a lot of code. I have done some work in Visual C# and Borland C++ Builder too.
Would you say that when it comes to Python, most people write the GUI by hand? Or do they use a designer like FormBuilder?