How to create a Windows Forms application with Iron Python

I just got Visual Studio 2013 RC with PTVS ( Python Tools for Visual Studio ). How to use the Windows Forms Designer Visual Studio has embedded in Python? VS has an Iron Python template for WF, but there is no way to use the actual GUI designer. Is there any way to get the functionality of a GUI designer using python?

+4
source share
1 answer

Python Tools for Visual Studio does not have a Windows Forms Designer. You can take a look at SharpDevelop, which has a Windows Forms designer for IronPython . Another alternative would be to create your form in C #, and then in your IronPython project use this form as the base class for your IronPython class.

+7
source

All Articles