Click here to Skip to main content
15,897,090 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I'm receiving data from a feed that determines what should be displayed on my UI and also user selection of options. I'm trying to find a REALLY good book, tutorial or design patters that cover building dynamic winForm GUI's.

Does anyone know of any good books or design patterns that cover building dynamic winForms?

Thanks in advance
-DA
Posted
Updated 3-Jul-13 4:02am
v2
Comments
BiteForce 3-Jul-13 10:24am    
I think, it´s not that hard. You just gotta use all the necessary usings and then you can easily create instances of the UIElements and declare their properties.

for example:

Button button = new Button();
button.Text = "Hi";
button.Click += delegate{DoSomething();};

Therefore I think, you won´t urgently need a book or something. You might have to google sometimes or do research in the msdn-references, but all in all everything´s very understandable and simple.

BG
d.allen101 3-Jul-13 10:29am    
thx the advice. i'm already doing it BUT i need a more structured/systematic way to learn this instead of trial and error. I'd like to learn from an academic standpoint then apply what i'm learning as i go along. i "guess" i'm looking for something along the lines of building custom layoutManagers, adding and removing controls based user preferences etc...

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900