一、目的
1.编译后,只想有一个exe文件,不想外部文件引用,直接运行exe文件即可。
2.不会出现文件丢失情况。
二、操作
1.右击project ->properties->Resource,左上角选择Image(或其他类型)
2. 点击Add Resource的下拉箭头(注意点击位置),选择Add Existing File,添加图片。
3.添加保存后,project会增加一个文件夹
三、Code使用
//图片Image captureCard = Properties.Resources.CaptureCard;
pictureBoxHWCaptureConnect.Image = captureCard;//txt 文档,直接获取文件内容
string fileSource = Properties.Resources.GitCommand;
textBoxGitAllCommand.Text = fileSource;