1

I want to create a WinForms IronPython app.

I have installed IronPython, but the toolbox is empty.

How to I add Python controls to it?

ManInMoon
  • 6,795
  • 15
  • 70
  • 133

1 Answers1

1

The toolbox is only available if you create an IronPython WPF Application. Unfortunately there is no designer support for a IronPython Windows Form Applications. The Windows Form has to be completely written in Python.

Source: https://github.com/Microsoft/PTVS/wiki/Projects#project-types. (Read the "IronPython Windows Forms Application" section)

David
  • 131
  • 4
  • 9