我在使用以下代码加载的资源中有一张图片:
var path = new Uri("pack://application:,,,/DocumentHandlingTouch;component/Resources/pdf.jpg", UriKind.Absolute);
我的计算机在构建之间崩溃,现在它没有;不再将该图片加载到画布上。 任何想法?
答案 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;