怎么将图片资源内置到exe中

如何将图片资源内置到exe中?
写了个换桌面壁纸的程序,但是,我想把jpg图片内置到exe中,使得直接用这个exe就行了,不需要额外再和jpg壁纸一块使用
------解决方案--------------------
直接添加到资源不就可以了吗?

项目属性,资源
怎么将图片资源内置到exe中
------解决方案--------------------


System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));

bnt_4.Image = ((System.Drawing.Image)(resources.GetObject("bnt_4.Image")));//资源名称.Image
------解决方案--------------------
添加图片文件
右键 属性 嵌入式资源
------解决方案--------------------
添加入资源后
调用时
方案名.Properties.Resources.资源名