博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
潜移默化学会WPF--绘图 学习(一)
阅读量:6569 次
发布时间:2019-06-24

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

指定图片资源

<Image x:Name="IconImage" Source="Res/0.png" Stretch="Fill"/>

 

后台

private int _iconindex = 1;

        public int IconIndex

        {

            get { return _iconindex; }

            set

            {

                _iconindex = value;

                var uri = new Uri("/AppleMenu;component/Res/" + value + ".png", UriKind.Relative);

                IconImage.Source = new System.Windows.Media.Imaging.BitmapImage(uri);

            }

        }

 

只看红色那一段

/程序集名称;component/具体目录/图片名称,UriKind.Relative

 

 

 

 

现在教你怎样教image上的图片另存为

      //imgShow为Image控件            BitmapSource bsrc = (BitmapSource)ImgShow.Source;            System.Windows.Forms.SaveFileDialog sf = new System.Windows.Forms.SaveFileDialog();            sf.DefaultExt = ".png";            sf.Filter = "png (.png)|*.png";            if (System.Windows.Forms.DialogResult.OK == sf.ShowDialog())            {                PngBitmapEncoder pngE = new PngBitmapEncoder();                pngE.Frames.Add(BitmapFrame.Create(bsrc));                using (Stream stream = File.Create(sf.FileName))                {
pngE.Save(stream); } }

转载地址:http://jepjo.baihongyu.com/

你可能感兴趣的文章
C语言 HTTP上传文件-利用libcurl库上传文件
查看>>
[MEAN Stack] First API -- 7. Using Route Files to Structure Server Side API
查看>>
调试逆向分为动态分析技术和静态分析技术(转)
查看>>
业务对象和BAPI
查看>>
微软职位内部推荐-Senior Software Engineer
查看>>
程序中的魔鬼数字
查看>>
session cookie
查看>>
$.extend({},defaults, options) --(初体验三)
查看>>
android 一步一步教你集成tinker(热修复)
查看>>
到底有多少内存
查看>>
centos7.3 安装ovirt-engine4.0 版本
查看>>
Openstack的环境的Mitaka部署环境服务,实例(1)
查看>>
文档的压缩与打包
查看>>
python3 在不同操作系统安装第三方库方法
查看>>
python编写登录接口
查看>>
MySQL高可用方案之多级复制
查看>>
OVS 中的各种网络设备 - 每天5分钟玩转 OpenStack(128)
查看>>
Trafficserver Cluster模式
查看>>
亚马逊推出 Blox,用于 EC2 容器服务的开源工具集合
查看>>
Linux:在中国没有真正的新闻
查看>>