Dynamic forms for your c# or visual basic .net application
In this example we create a simple dynamic form based off of the properties of the class 'Find'
// using CodeOverload.WindowspublicExample(){DynamicFormdf=newDynamicForm("Find",newFind());result=df.ShowDialog();if(result==DialogResult.OK){Finddata=(Find)df.DataItem;// The data object is automatically bound to the form}}publicclassFind{publicintTaskNumber{get;set;}}https://codeoverload.wordpress.com/2010/12/24/dynamic-forms-in-c/
This source is covered by the GNU General Public License v2 and later

