vote up 0 vote down star

Is there a way to pass the parameters to the LoadControl function when loading the user control dynamically?

flag

44% accept rate

2 Answers

vote up 0 vote down

I found a solution that uses reflection here

link|flag
vote up 1 vote down

All you need to do is create a descendant of the UserControl class, add a default constructor and another constructor that takes your parameters. The parameterless constructor is necessary for designer support.

public class MyControl : UserControl
{
    public MyControl() : base()
    {
       // do initialization stuff...
    }

    public MyControl(int parameter) : this()
    {
       // do additional stuff with parameter
    }
}
link|flag
Thanks, yes, I know how to write a constructor:) I was more referring to the dynamic User Control creation with LoadControl function. How do I pass a parameter to the constructor to this function. Sorry, if I weren't clear. – gnomixa Jun 5 at 17:05
I thought the problem was with the Visual Studio designer not displaying the user control (which may be the case when you do not provide a parameterless constructor)... – Thorsten Dittmar Jun 8 at 14:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.