Click here to Skip to main content
15,886,795 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I have a project and also have a UserControlLibrary. I have created DLL of UserControlLibary.Now, I want to add it to my application by code.

I tried this, but it doesn't work.
C#
Assembly a = Assembly.LoadFrom("user.dll");
Type myType = a.GetType();
UserControl user = (UserControl)a.CreateInstance(myType);
this.main_grid.Children.Add(user);


How can i do?
Posted
Updated 17-Nov-16 15:56pm
Comments
Bernhard Hiller 26-Mar-12 2:55am    
Is that library a WPF library, or a Windows Forms library?
Amir Mahfoozi 27-Mar-12 3:34am    
In which line you get the error and what is the error details ?

1 solution

I suggest you have a "lib" directory or something where you copy your library to, and then add a reference to that.
 
Share this answer
 

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