WPF 将DLL嵌入EXE文件(安装包)_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > WPF 将DLL嵌入EXE文件(安装包)

WPF 将DLL嵌入EXE文件(安装包)

 2016/5/27 0:32:11  阿冠  程序员俱乐部  我要评论(0)
  • 摘要:网上很多例子,各种套路,就是没有测试过。WPF将DLL嵌入EXE文件的套路是这样的1.将要引用的dll源文件添加到wpf项目中,dll的属性-》生成操作为【嵌入的资源】。2.监听AppDomain.CurrentDomain.AssemblyResolve事件监听的事件的位置很重要,跟wpf的运行顺序有关系吧。找到wpf项目中的App.xaml文件,App.xaml.cs类的构造函数中监听。1publicApp()2{34CatchException();5AppDomain
  • 标签:文件 安装

网上很多例子,各种套路,就是没有测试过。

WPF 将DLL嵌入EXE文件的套路是这样的

1.将要引用的dll源文件添加到wpf 项目中,dll 的属性-》生成操作为【嵌入的资源】。

 

2.监听    AppDomain.CurrentDomain.AssemblyResolve 事件

监听的事件的位置很重要,跟wpf 的运行顺序有关系吧。

找到wpf 项目中的App.xaml 文件,App.xaml.cs 类的构造函数中监听。

1   public App()
2         {
3            
4             CatchException();
5             AppDomain.CurrentDomain.AssemblyResolve += OnResolveAssembly;
6         }

 

class="code_img_closed" src="/Upload/Images/2016052700/0015B68B3C38AA5B.gif" alt="" />logs_code_hide('f6ba1c10-0f16-4732-82f0-a8065dc97d91',event)" src="/Upload/Images/2016052700/2B1B950FA3DF188F.gif" alt="" />
 1  private static Assembly OnResolveAssembly(object sender, ResolveEventArgs args)
 2         {
 3             var requestedAssemblyName = new AssemblyName(args.Name);
 4             string resourceName = "当前项目的命名空间" + "." + requestedAssemblyName.Name + ".dll";
 5             System.Windows.Forms.MessageBox.Show(resourceName);
 6             try
 7             {
 8                 using (System.IO.Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName))
 9                 {
10                     byte[] buffer = new byte[stream.Length];
11                     stream.Read(buffer, 0, buffer.Length);
12                     return Assembly.Load(buffer);
13                 }  
14             }
15             catch (Exception ex)
16             {
17                 System.Windows.Forms.MessageBox.Show(String.Format(@"{0}\{1}",ex.Message,ex.StackTrace));
18                 throw;
19             }
20         }
View Code

 

参考了一下链接

http://www.codeproject.com/Articles/310675/AppDomain-AssemblyResolve-Event-Tips

http://www.digitallycreated.net/Blog/61/combining-multiple-assemblies-into-a-single-exe-for-a-wpf-application

http://www.cnblogs.com/luoshupeng/p/3951597.html

http://www.cnblogs.com/xiashengwang/archive/2012/07/16/2593921.html

 

发表评论
用户名: 匿名