博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
silverlight imagesource赋值与转换
阅读量:5292 次
发布时间:2019-06-14

本文共 615 字,大约阅读时间需要 2 分钟。

介绍几种常用的Image source 赋值方式:

this.abc.Source = new BitmapImage(new Uri("/1.jpg", UriKind.RelativeOrAbsolute));
Uri uri = new Uri("1.jpg", UriKind.Relative);ImageSource imgSource = new System.Windows.Media.Imaging.BitmapImage(uri);   this.abc.SetValue(Image.SourceProperty, imgSource);
this.abc.Source = new BitmapImage(new Uri("F:\\1.jpg", UriKind.RelativeOrAbsolute));

/{程序集名};component搜索/{图片资源路径}

var uri = new Uri("/AppleMenu;component/Res/" + value + ".png", UriKind.Relative);                IconImage.Source = new System.Windows.Media.Imaging.BitmapImage(uri);

 

转载于:https://www.cnblogs.com/lsqandzy/p/4264900.html

你可能感兴趣的文章
Min Stack
查看>>
从LazyPhp说起
查看>>
Fine Uploader文件上传组件
查看>>
Spring Boot与Spring的区别
查看>>
查看linux 之mysql 是否安装的几种方法
查看>>
javascript中的传递参数
查看>>
objective-c overview(二)
查看>>
python查询mangodb
查看>>
软件测试(基础理论一)摘
查看>>
consonant combination
查看>>
PHP与Linux进程间的通信
查看>>
【长期更新】坑点合集
查看>>
wnmp windows 2012 r2+php7.0+nginx1.14安装
查看>>
weblogic与axis2 jar包冲突
查看>>
Hello Spring Framework——面向切面编程(AOP)
查看>>
解决java.sql.SQLException: Value '0000-00-00' can not be represented as java.sql.Date
查看>>
将.lib库文件转换成.a库文件的工具
查看>>
FZU 2129 子序列个数 (动态规划)
查看>>
20155324 2016-2017-2 《Java程序设计》第7周学习总结
查看>>
CSS清浮动处理(Clear与BFC)
查看>>