我有 WPF 项目,在项目中我有一个文件夹调用Images
,它包含一些 png 和 gif 文件。其中的所有文件都是Build Action= Resources
并复制到Output Directory = Do not copy
.
我使用以下代码将其绑定到图像:
ImageSource ImageStatus = new BitmapImage(new Uri("/MPAL;component/Images/usbreader0001.png", UriKind.Relative));
MPAL
是我的项目名称和默认程序集。
我有一个问题,图像编译到哪里?因为我能够在没有任何问题的情况下运行它。
我称它为正确的方法吗?
谢谢你。