Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to Implement Custom Windows Forms Designer? [closed]

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 ?

like image 443
this. __curious_geek Avatar asked Nov 14 '22 16:11

this. __curious_geek


1 Answers

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.

like image 50
this. __curious_geek Avatar answered Dec 18 '22 19:12

this. __curious_geek