Hi all. I have (what I think is) a unique problem to solve, but a solvable one, written in C# .Net3.5 in VS2008.
I want to have a group of classed inheriting from parent class 1. a Collection of controls, controls to be stipulated by child classes and assumed different for each, 2. Another control of some sort this controls are to be nested within.
These classes are instantiated from selection of a user dynamically, their respective controls instantiated and the control holding each of the controls in the classes collection of controls, is added to a control on the form.
Any changes to any of the controls (ie. checkBox1_CheckedChanged()) needs to fire the same event, which will ultimately read all the values of each control and perform actions,etc.
I had also planned to have these dynamic controls to be dragged/dropped as a group within the static form control, but baby steps.
I had thought about the TableLayoutPanel but the best practices guide recommends not nesting, and considering it will only every have 1 row (for the dynamic controls), or 1 column for the static form control.
I have the classes created, just need advice on the controls. Any suggestions?