调用嵌入的资源
- 作者:zhaozj
- 发表时间:2020-12-23 10:37
- 来源:未知
嵌入的资源
---------------------
Type t =this.GetType();
Icon icon=new Icon(t, "iconname.ico");
---------------------
右键资源管理器——添加现有项目(添加一个名为123的jpg图片)
选中图片,在属性栏中把“生成操作”设为“嵌入的资源”
代码:
System.Reflection.Assembly thisExe;thisExe = System.Reflection.Assembly.GetExecutingAssembly();
//WindowsApplication1为程序集的命名空间//123.jpg为图片的名字System.IO.Stream file = thisExe.GetManifestResourceStream ("WindowsApplication1.123.jpg");
this.pictureBox1.Image = Image.FromStream(file);