本文介绍了如何释放不在“视野”中的图像控制的存储器。列表视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有一个带有图像控件的列表视图,绑定了Uri值(磁盘上的图像路径)。 我想要仅转换视野中的那些Uri并处置(或转换回Uri),这些都离开了视野。 提前致谢。 我尝试了什么: 我用IValueConverter进行转换Uri to Image但是ConvertBack没有触发。 < Image Source ={Binding PageSource,Mode = TwoWay,UpdateSourceTrigger = Explicit,Converter = {StaticResource ImageConverter}}Horizo​​ntalAlignment =中心VerticalAlignment =Top/> 解决方案 Hi,I have a listview with Image control, bound with Uri value (image path on disk).I want to convert only those Uri in "Field of view" and dispose (or convert back to Uri) which goes out of "Field of View".Thanks in advance.What I have tried:I have used IValueConverter to convert Uri to Image but ConvertBack is not firing.<Image Source="{Binding PageSource,Mode=TwoWay, UpdateSourceTrigger=Explicit, Converter={StaticResource ImageConverter}}" HorizontalAlignment="Center" VerticalAlignment="Top"/> 解决方案 这篇关于如何释放不在“视野”中的图像控制的存储器。列表视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-30 08:35