资源图片不再加载

时间:2015-04-13 15:14:29

标签: c# wpf embedded-resource

我在使用以下代码加载的资源中有一张图片:

var path = new Uri("pack://application:,,,/DocumentHandlingTouch;component/Resources/pdf.jpg", UriKind.Absolute);

我的计算机在构建之间崩溃,现在它没有;不再将该图片加载到画布上。 任何想法?

1 个答案:

答案 0 :(得分:0)

请检查您是否已将图像文件的构建操作设置为'资源'在你的项目中。

var pdfimage = new Image();
BitmapImage src = new BitmapImage();
src.BeginInit();
src.UriSource = new Uri(@"pack://application:,,,/DocumentHandlingTouch;component/Resources/pdf.jpg", UriKind.Absolute); 
src.EndInit();
pdfimage.Source = src;