自己总结一下wpf image source 绑定的几种方式

绝对路径:       

代码   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));不用显式的写出,会自动加上

还有其他的绑定方法,可以绑定流,以后添加

 

自己总结一下wpf image source 绑定的几种方式

上一篇:【C#】 引用类型


下一篇:django.db.utils.IntegrityError: (1048, "Column 'spu_id' cannot be null")关于RESTframework使用序列化器报错问题