WP 7.5 - Is LowProfileImageLoader still a best practice in Mango?
Is开发者_运维问答 it still a best practice to use the LowProfileImageLoader in Mango?
I would recommend you read this article, and judge yourself: Off-thread decoding of images on Mango, how it impacts your application ?.
My personal experience says that the BackgroundCreation
option is still doing way more work on the UI thread than the LowProfileImageLoader
. I have some projects where it's still necessary.
Specially in combination with the LongListSelector
(from the Silverlight Toolkit) and it's custom way of doing virtualization, I find the LowProfileImageLoader
much needed to avoid having a second-second UI lock in one of my applications.
精彩评论