多个图像具有相同的来源?
当我有多个具有相同源的图像时,WPF 是否为每个 Image 对象创建单独的图像数据副本,或者它们共享它?
When I have multiple Images with the same source, does WPF create a separate copy of image data for each Image object, or they share it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你能说得更具体一点吗?查看 MSDN 上的 BitmapImage 。您可以使用 CacheOption 属性来处理它的缓存方式。
can u be a bit more specific ? have a look at BitmapImage on MSDN. you can use CacheOption property to handle how it caches it.
我认为,分享
a。添加了一个图像元素,其中图像 A 作为源
b。添加了两个图像元素,其中图像 A 作为两个
c 的源。添加了三个图像元素,其中图像 A 和图像 B 作为源,每个元素
查看任务管理器
a < 中的内存消耗b << c
i think, the share
a. added an Image element with image A as source
b. added two Image elements with image A as source for both
c. added three Image elements with image A and image B as sources one for each
looked at the memory consumption in task manager
a < b << c