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

本文共 1130 字,大约阅读时间需要 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); } }
posted on
2019-03-01 22:32 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/lonelyxmas/p/10459153.html

你可能感兴趣的文章
javascript的发展及个人笔记
查看>>
全选,反全选,反选,获取选中的值,根据子选择控制全选按钮
查看>>
[CF#250 Div.2 D]The Child and Zoo(并查集)
查看>>
博客园博客插入公式
查看>>
hdu 1028 Ignatius and the Princess III(母函数入门+模板)
查看>>
Ubuntu下配置安装telnet server
查看>>
Codeforces 235 E Number Challenge
查看>>
ubuntu 常见命令整理
查看>>
EJBCA安装教程+postgresql+wildfly10
查看>>
(五十四)涂鸦的实现和截图的保存
查看>>
配置EditPlus使其可以编译运行java程序
查看>>
java中的占位符\t\n\r\f
查看>>
MySQL通过frm 和 ibd 恢复数据过程
查看>>
SRS源码——Listener
查看>>
Java面向对象抽象类案例分析
查看>>
对SPI、IIC、IIS、UART、CAN、SDIO、GPIO的解释
查看>>
Thymeleaf模板格式化LocalDatetime时间格式
查看>>
庖丁解“学生信息管理系统”
查看>>
Pyltp使用
查看>>
其他ip无法访问Yii的gii,配置ip就可以
查看>>