Ilkin Turk

Ilkin Turk

  • NA
  • 349
  • 155.1k

Design Patterns - winforms controls

Dec 17 2012 3:22 AM
Hello

I wanted using factory pattern create Winform controls and add them to forms dynamically.Their methods too.
ITools
{
Button getbutton();
TextBox gettextbox(); 

Class myClass:ITools
{
Button getbutton()
{
Button btn = new Button();
}
}
And then factories.
So, I want to make my code more flexible.Free.What do you think this will help me?How flexible?
Thanks in advance