绝对路径:
代码 BitmapImage image = new BitmapImage(new Uri("E:\\Project\\xxx.png", UriKind.Absolute));
imgName.source = image;
xaml: <Image Name="imgName" SourceE:\\Project\\xxx.png">
相对路径:
1) :引用其他程序集的资源
<Image Name="tb_1" Source="/Yiou.Hospital.Platform.Resource;Component/Image/ToLeft.png">
"/Yiou.Hospital.Platform.Resource; 其他程序集的名称
Component 固定写法
2)项目下的目录
imgName.Source = new BitmapImage(new Uri(pack://application:,,,/Resources/aa.jpg));
pack://application:,,,这个也是固定写法,imgName.Source = new BitmapImage(new Uri(/aa.jpg));不用显式的写出,会自动加上
还有其他的绑定方法,可以绑定流,以后添加