5

How can we implement Windows Forms Designer in a WinForms application ? Visual Studio uses System.ComponentModel.Design namespace to implement the Form Designer. How can we use this to implement a Form Designer in a WinForms application ? Is there any other library available for achieving the same ?

Jon Seigel
  • 12,251
  • 8
  • 58
  • 92
this. __curious_geek
  • 42,787
  • 22
  • 113
  • 137

1 Answers1

1

I finally found something really interesting and helpful from CodePlex here. I read about this on Brad Abram's Blog Post. These includes many examples on framework extensibility and Custom Windows Form Designer Interface is one of them.

Link Txt 1: http://mef.codeplex.com/

Link Txt 2: http://blogs.msdn.com/brada/archive/2009/04/13/managed-extensibility-framework-preview-5-released.aspx

Thanks.

this. __curious_geek
  • 42,787
  • 22
  • 113
  • 137