Hi,
I'm making a settings screen at the moment that will have a radiobutton group which will determine what controls are displayed. The different settings are contained within a UserControl.
I am dynamically creating this UserControl like so:
panel = new btSettings();
this.Controls.Add(panel);
panel.Location = new Point(15, 49);
Just wondering how I can access the fields within this control and design time when the object will only be created during run time?
Thanks.