wpf image控件 绑定本地磁盘的图片 绝对路径的应该怎么写
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wpf image控件 绑定本地磁盘的图片 绝对路径的应该怎么写相关的知识,希望对你有一定的参考价值。
string path = @"D:\a";
string file = Directory.GetFiles(path)[Directory.GetFiles(path).Length - 1];
photoBox.Source = new BitmapImage(new Uri(file, UriKind.Relative));
我需要实时检测这个文件夹 但是不知道为什么绑定了以后能通过编译 但是显示不出来
我把file替换成绝对路径 图片也不能显示
追答这个就不知道了,你在仔细看下Directory.GetFiles函数的用法以及参数的个数等,看用对了吗,有实例更好
这个代码我没用过,对了那个path=@“”那个@ 干什么用的
WPF 保存image控件里的图片
原文:WPF 保存image控件里的图片string ProImgPath = ProcessPath + name + ".png";//要保存的图片的地址,包含文件名 BitmapSource BS = (BitmapSource)ImgPro.Source; PngBitmapEncoder PBE = new PngBitmapEncoder(); PBE.Frames.Add(BitmapFrame.Create(BS)); using (Stream stream = File.Create(ProImgPath)) { PBE.Save(stream); }
以上是关于wpf image控件 绑定本地磁盘的图片 绝对路径的应该怎么写的主要内容,如果未能解决你的问题,请参考以下文章
急等,在wpf中怎么才能把image控件的source属性绑定到listview中的选中项