本文介绍了WPF 中的 BitmapImage 确实锁定文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用:
Dim bmi As New BitmapImage(New Uri(fiInfo.FullName, UriKind.Absolute))
bmi.CacheOption = BitmapCacheOption.OnLoad
这不会使用 OnLoad并且文件仍然被锁定覆盖在硬盘上.知道如何解锁吗?
this does not Use OnLoadAnd file still is locked to overwrite on harddisk. Any idea how to unlock?
问候
推荐答案
如您链接的问题所示,您需要像这样调用 BeginInit 和 EndInit,并设置 UriSource 属性:
As shown in the question you link to, you'd need to call BeginInit and EndInit, like so as well as set the UriSource property:
Dim bmi As New BitmapImage()
bmi.BeginInit()
bmi.CacheOption = BitmapCacheOption.OnLoad
bmi.UriSource = New Uri(fiInfo.FullName, UriKind.Absolute)
bmi.EndInit()
这篇关于WPF 中的 BitmapImage 确实锁定文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!