2011年8月26日
摘要: 本文的思路是通过传统GDI+的方式显示gif图片,优点是简单方便易用,缺点是要引入System.Drawing,另外显示到UI上还是要经过GDI+的图片到WPF图片的一次转换,这一点同时带来了些微性能上的消耗。Source Codecs:public class GifImage : System.Windows.Controls.Image { public string UriSource { get { return (string)GetValue(UriSourceProperty); } set { Se... 阅读全文
posted @ 2011-08-26 16:34 陈儒 阅读(503) 评论(1) 推荐(0) 编辑