我有WPF项目,在项目内我有一个文件夹调用Images
,它包含一些png和gif文件。其中的所有文件均为Build Action= Resources
,并复制到Output Directory = Do not copy
。
我使用以下代码将其绑定到Image:
ImageSource ImageStatus = new BitmapImage(new Uri("/MPAL;component/Images/usbreader0001.png", UriKind.Relative));
MPAL
是我的项目名称和默认程序集。
我有一个问题,图像编译到哪里?因为我能够运行它来解决问题。
我称之为正确的方法吗?
谢谢。
答案 0 :(得分:2)
构建操作=资源将图像放在名为 projectname .g.resources的文件中。编译时,该资源文件将链接到您的exe文件中。