按代码将DLL添加到WPF应用程序

按代码将DLL添加到WPF应用程序

本文介绍了按代码将DLL添加到WPF应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我有一个项目,还有一个UserControlLibrary。我已经创建了UserControlLibary.Now的DLL,我想通过代码将它添加到我的应用程序中。



我试过这个,但它不起作用。

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.

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?

推荐答案


这篇关于按代码将DLL添加到WPF应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 15:05