views:

26

answers:

0

I want to develop a WinForms application and the purpose of this application is creation of a GUI with different components. I should have two forms:

  • The GUI designer. It allows selecting components like Combobox, TextBox, Button, etc. for the form. It allows make changes for properties like Location, Size, Visible, Caption. It allows set specific properties for a component like Checkbox-checked, Textbox - maxlength, etc. It depends on type of component.
  • The result form. This form should allow to see the result of designer from. A person creates a form in our designer then click on button run and the result should be result form with created components.

What way should I follow to create this type of app? I am going to use C#.Net.